IMX462
IMX462 is a rolling shutter color sensor.| Spec | Value |
|---|---|
| Shutter type | rolling |
| Type | color |
| Sensor size | 1/2.8" (9.1mm) |
| Pixel size | 2.9 μm |
| Platform Support | RVC2 |
RVC2 supported resolutions
| Resolution name | Resolution size | Max FPS | MIPI lanes | Mode |
|---|---|---|---|---|
THE_1080_P | 1920x1080 | 30 | 2 | Full resolution |
RVC2 driver limits
Sensor driver adds support for that sensor to the RVC2. Here are RVC2 driver specifications for this sensorPart of the ISP (Image Signal Processor) is also the 3A (Auto Exposure, Auto White Balance, Auto Focus) algorithm. They are enabled by default, but you can also disable them and manually set the exposure, gain, white balance, etc.Manual limits
- Min FPS: 0.3
- Min exposure time: 7 μs
- Max exposure time:
1 / CAM_FPSseconds. Eg. 33ms @ 30FPS
Auto limits
- Min exposure time: 8 μs
- Max exposure time: Depends on the Anti-Banding mode:
- Anti-Banding mode OFF: 33 ms
- Anti-Banding mode 50Hz: 30 ms
- Anti-Banding mode 60Hz: 25 ms
Python
1cam = pipeline.create(dai.node.ColorCamera) # Or MonoCamera
2# "OFF", "MAINS_50_HZ", or "MAINS_60_HZ"
3cam.initialControl.setAntiBandingMode(dai.CameraControl.AntiBandingMode.OFF)High Conversion Gain (HCG)
High Conversion Gain (HCG) increases the voltage output per captured electron in an image sensor, improving sensitivity and reducing noise in low-light conditions. However, it reduces the pixel’s full well capacity, making it more prone to saturation in bright light. It is supported on IMX462 and can be enabled by uncommenting thehigh-conversion-gain setting in cam_test.pyPython
1.setMisc("high-conversion-gain", 1) # 1 to enable (default on supported sensors)`Command Line
1python3 cam_test.py