-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devices: imx708: Add a new IMX708 helper class
This class provides a convenient helper function set enable/disable sensor HDR mode without relying on external tools. Usage example: ----- from picamera2.devices.imx708 import IMX708 from picamera2 import Picamera2 camera_num = 0 c = IMX708(camera_num) c.set_sensor_hdr_mode(True) picam2 = Picamera2(camera_num) ----- Note that after calling IMX708.set_hdr_mode(), you must re-initialise the Picamera2 instance. Signed-off-by: Naushir Patuck <[email protected]>
- Loading branch information
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .imx708 import IMX708 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import fcntl | ||
import os | ||
|
||
from picamera2 import Picamera2 | ||
from v4l2 import * | ||
|
||
HDR_CTRL_ID = 0x009a0915 | ||
|
||
|
||
class IMX708: | ||
def __init__(self, camera_num: int): | ||
self.device_fd = None | ||
|
||
camera_id = next((c['Id'] for c in Picamera2.global_camera_info() if c['Num'] == camera_num), None) | ||
if camera_id is None: | ||
raise RuntimeError(f'IMX708: Requested camera number {camera_num} cound not be found') | ||
|
||
for i in range(16): | ||
test_dir = f'/sys/class/video4linux/v4l-subdev{i}/device' | ||
module_dir = f'{test_dir}/driver/module' | ||
id_dir = f'{test_dir}/of_node' | ||
if os.path.exists(module_dir) and os.path.islink(module_dir) and 'imx708' in os.readlink(module_dir): | ||
if os.path.islink(id_dir) and camera_id in os.readlink(id_dir): | ||
self.device_fd = open(f'/dev/v4l-subdev{i}', 'rb+', buffering=0) | ||
break | ||
|
||
if self.device_fd is None: | ||
raise RuntimeError('IMX708: Requested camera device node not found') | ||
|
||
def __del__(self): | ||
if self.device_fd: | ||
self.device_fd.close() | ||
|
||
def set_sensor_hdr_mode(self, enable: bool): | ||
""" | ||
Set the sensor HDR mode (True/False) on the IMX708 device. Note that after changing the HDR mode, you must | ||
re-initialise the Picamera2 object to cache the updated sensor modes. | ||
""" | ||
ctrl = v4l2_control() | ||
ctrl.id = HDR_CTRL_ID | ||
ctrl.value = int(enable) | ||
|
||
try: | ||
fcntl.ioctl(self.device_fd, VIDIOC_S_CTRL, ctrl) | ||
except OSError as err: | ||
print(f'IMX708: Unable to set HDR control in the device node: {err}') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters