mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
Support for MONO8 & MONO12 pixel formats
This commit is contained in:
@@ -409,6 +409,9 @@ enum
|
||||
CV_CAP_PROP_XI_SENSOR_FEATURE_SELECTOR = 585, // Selects the current feature which is accessible by XI_PRM_SENSOR_FEATURE_VALUE.
|
||||
CV_CAP_PROP_XI_SENSOR_FEATURE_VALUE = 586, // Allows access to sensor feature value currently selected by XI_PRM_SENSOR_FEATURE_SELECTOR.
|
||||
|
||||
// ARAVIS
|
||||
CV_CAP_PROP_ARAVIS_PIXELFORMAT = 1001, // Pixel format
|
||||
|
||||
// Properties for Android cameras
|
||||
CV_CAP_PROP_ANDROID_FLASH_MODE = 8001,
|
||||
CV_CAP_PROP_ANDROID_FOCUS_MODE = 8002,
|
||||
@@ -488,6 +491,13 @@ enum
|
||||
CV_CAP_OPENNI_QVGA_60HZ = 4
|
||||
};
|
||||
|
||||
// Supported output modes of Aravis image generator
|
||||
enum
|
||||
{
|
||||
CV_CAP_MODE_GRAY8 = 0, // Y8 (default)
|
||||
CV_CAP_MODE_GRAY12 = 1 // Y12
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
CV_CAP_INTELPERC_DEPTH_MAP = 0, // Each pixel is a 16-bit integer. The value indicates the distance from an object to the camera's XY plane or the Cartesian depth.
|
||||
|
||||
Reference in New Issue
Block a user