diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-05-30 22:20:43 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-10-27 01:40:33 +0300 |
commit | 44b90dece5576abe5814bed72b02bed8eccdc8d9 (patch) | |
tree | 2e96ab9845d15870dc3af4a274191458c5dee1a6 | |
parent | 31ab89b51b2dee186a8ba90c95d71721380a2827 (diff) |
libcamera: camera_sensor: Add IMX296 sensor properties
The Sony IMX296 is a global shutter sensor with a 1456x1088 pixel array
size, with a recommended resolution after CFA interpolation of
1440x1080.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | src/libcamera/camera_sensor_properties.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcamera/camera_sensor_properties.cpp b/src/libcamera/camera_sensor_properties.cpp index b6ad112e..27820fdf 100644 --- a/src/libcamera/camera_sensor_properties.cpp +++ b/src/libcamera/camera_sensor_properties.cpp @@ -94,6 +94,10 @@ const CameraSensorProperties *CameraSensorProperties::get(const std::string &sen .unitCellSize = { 2900, 2900 }, .testPatternModes = {}, } }, + { "imx296", { + .unitCellSize = { 3450, 3450 }, + .testPatternModes = {}, + } }, { "ov5647", { .unitCellSize = { 1400, 1400 }, .testPatternModes = {}, |