Delete end comma in enumerations
This commit is contained in:
parent
66145ea06c
commit
80d0593dbd
@ -460,11 +460,11 @@ enum
|
|||||||
CV_CAP_PROP_IOS_DEVICE_EXPOSURE = 9002,
|
CV_CAP_PROP_IOS_DEVICE_EXPOSURE = 9002,
|
||||||
CV_CAP_PROP_IOS_DEVICE_FLASH = 9003,
|
CV_CAP_PROP_IOS_DEVICE_FLASH = 9003,
|
||||||
CV_CAP_PROP_IOS_DEVICE_WHITEBALANCE = 9004,
|
CV_CAP_PROP_IOS_DEVICE_WHITEBALANCE = 9004,
|
||||||
CV_CAP_PROP_IOS_DEVICE_TORCH = 9005
|
CV_CAP_PROP_IOS_DEVICE_TORCH = 9005,
|
||||||
|
|
||||||
// Properties of cameras available through Smartek Giganetix Ethernet Vision interface
|
// Properties of cameras available through Smartek Giganetix Ethernet Vision interface
|
||||||
/* --- Vladimir Litvinenko (litvinenko.vladimir@gmail.com) --- */
|
/* --- Vladimir Litvinenko (litvinenko.vladimir@gmail.com) --- */
|
||||||
,CV_CAP_PROP_GIGA_FRAME_OFFSET_X = 10001,
|
CV_CAP_PROP_GIGA_FRAME_OFFSET_X = 10001,
|
||||||
CV_CAP_PROP_GIGA_FRAME_OFFSET_Y = 10002,
|
CV_CAP_PROP_GIGA_FRAME_OFFSET_Y = 10002,
|
||||||
CV_CAP_PROP_GIGA_FRAME_WIDTH_MAX = 10003,
|
CV_CAP_PROP_GIGA_FRAME_WIDTH_MAX = 10003,
|
||||||
CV_CAP_PROP_GIGA_FRAME_HEIGH_MAX = 10004,
|
CV_CAP_PROP_GIGA_FRAME_HEIGH_MAX = 10004,
|
||||||
@ -482,7 +482,7 @@ enum
|
|||||||
// Intel PerC streams
|
// Intel PerC streams
|
||||||
CV_CAP_INTELPERC_DEPTH_GENERATOR = 1 << 29,
|
CV_CAP_INTELPERC_DEPTH_GENERATOR = 1 << 29,
|
||||||
CV_CAP_INTELPERC_IMAGE_GENERATOR = 1 << 28,
|
CV_CAP_INTELPERC_IMAGE_GENERATOR = 1 << 28,
|
||||||
CV_CAP_INTELPERC_GENERATORS_MASK = CV_CAP_INTELPERC_DEPTH_GENERATOR + CV_CAP_INTELPERC_IMAGE_GENERATOR,
|
CV_CAP_INTELPERC_GENERATORS_MASK = CV_CAP_INTELPERC_DEPTH_GENERATOR + CV_CAP_INTELPERC_IMAGE_GENERATOR
|
||||||
};
|
};
|
||||||
|
|
||||||
enum
|
enum
|
||||||
@ -568,7 +568,7 @@ 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.
|
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.
|
||||||
CV_CAP_INTELPERC_UVDEPTH_MAP = 1, // Each pixel contains two 32-bit floating point values in the range of 0-1, representing the mapping of depth coordinates to the color coordinates.
|
CV_CAP_INTELPERC_UVDEPTH_MAP = 1, // Each pixel contains two 32-bit floating point values in the range of 0-1, representing the mapping of depth coordinates to the color coordinates.
|
||||||
CV_CAP_INTELPERC_IR_MAP = 2, // Each pixel is a 16-bit integer. The value indicates the intensity of the reflected laser beam.
|
CV_CAP_INTELPERC_IR_MAP = 2, // Each pixel is a 16-bit integer. The value indicates the intensity of the reflected laser beam.
|
||||||
CV_CAP_INTELPERC_IMAGE = 3,
|
CV_CAP_INTELPERC_IMAGE = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
/* retrieve or set capture properties */
|
/* retrieve or set capture properties */
|
||||||
|
Loading…
Reference in New Issue
Block a user