You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -364,6 +365,38 @@ enum class ESlErrorCode : uint8
364
365
EC_None UMETA(DisplayName = "No error")
365
366
};
366
367
368
+
/**
369
+
\brief Lists available camera settings for the camera (contrast, hue, saturation, gain, ...).
370
+
\warning All \ref VIDEO_SETTINGS are not supported for all camera models. You can find the supported \ref VIDEO_SETTINGS for each ZED camera in our <a href="https://www.stereolabs.com/docs/video/camera-controls#adjusting-camera-settings">documentation</a>.\n\n
371
+
GAIN and EXPOSURE are linked in auto/default mode (see \ref sl::Camera.setCameraSettings()).
VS_BRIGHTNESS UMETA(DisplayName = "Brightness"), /**< Brightness control \n Affected value should be between 0 and 8. \note Not available for ZED X/X Mini cameras.*/
377
+
VS_CONTRAST UMETA(DisplayName = "Contrast"), /**< Contrast control \n Affected value should be between 0 and 8. \note Not available for ZED X/X Mini cameras.*/
378
+
VS_HUE UMETA(DisplayName = "Hue"), /**< Hue control \n Affected value should be between 0 and 11. \note Not available for ZED X/X Mini cameras.*/
379
+
VS_SATURATION UMETA(DisplayName = "Saturation"), /**< Saturation control \n Affected value should be between 0 and 8.*/
380
+
VS_SHARPNESS UMETA(DisplayName = "Sharpness"), /**< Digital sharpening control \n Affected value should be between 0 and 8.*/
381
+
VS_GAMMA UMETA(DisplayName = "Gamma"), /**< ISP gamma control \n Affected value should be between 1 and 9.*/
382
+
VS_GAIN UMETA(DisplayName = "Gain"), /**< Gain control \n Affected value should be between 0 and 100 for manual control. \note If EXPOSURE is set to -1 (automatic mode), then GAIN will be automatic as well.*/
383
+
VS_EXPOSURE UMETA(DisplayName = "Exposure"), /**< Exposure control \n Affected value should be between 0 and 100 for manual control.\n The exposition is mapped linearly in a percentage of the following max values.\n Special case for <code>EXPOSURE = 0</code> that corresponds to 0.17072ms.\n The conversion to milliseconds depends on the framerate: <ul><li>15fps & <code>EXPOSURE = 100</code> -> 19.97ms</li><li>30fps & <code>EXPOSURE = 100</code> -> 19.97ms</li><li>60fps & <code>EXPOSURE = 100</code> -> 10.84072ms</li><li>100fps & <code>EXPOSURE = 100</code> -> 10.106624ms</li></ul>*/
384
+
VS_AEC_AGC UMETA(DisplayName = "AEC AGC"), /**< Defines if the GAIN and EXPOSURE are in automatic mode or not.\n Setting GAIN or EXPOSURE values will automatically set this value to 0.*/
385
+
VS_AEC_AGC_ROI UMETA(DisplayName = "AEC AGC Roi"), /**< Defines the region of interest for automatic exposure/gain computation.\n To be used with overloaded \ref Camera.setCameraSettings(VIDEO_SETTINGS,Rect,sl::SIDE,bool) "setCameraSettings()" / \ref Camera.getCameraSettings(VIDEO_SETTINGS,Rect&,sl::SIDE) "getCameraSettings()" methods.*/
386
+
VS_WHITEBALANCE_TEMPERATURE UMETA(DisplayName = "White balance"), /**< Color temperature control \n Affected value should be between 2800 and 6500 with a step of 100. \note Setting a value will automatically set WHITEBALANCE_AUTO to 0.*/
387
+
VS_WHITEBALANCE_AUTO UMETA(DisplayName = "Auto White balance"), /**< Defines if the white balance is in automatic mode or not.*/
388
+
VS_LED_STATUS UMETA(DisplayName = "LED status"), /**< Status of the front LED of the camera.\n Set to 0 to disable the light, 1 to enable the light.\n Default value is on. \note Requires camera firmware 1523 at least.*/
389
+
VS_EXPOSURE_TIME UMETA(DisplayName = "Exposure time"), /**< Real exposure time control in microseconds. \note Only available for ZED X/X Mini cameras.\note Replace EXPOSURE setting.*/
390
+
VS_ANALOG_GAIN UMETA(DisplayName = "Analog gain"), /**< Real analog gain (sensor) control in mDB.\n The range is defined by Jetson DTS and by default [1000-16000]. \note Only available for ZED X/X Mini cameras.\note Replace GAIN settings.*/
391
+
VS_DIGITAL_GAIN UMETA(DisplayName = "Digital gain"), /**< Real digital gain (ISP) as a factor.\n The range is defined by Jetson DTS and by default [1-256]. \note Only available for ZED X/X Mini cameras.\note Replace GAIN settings.*/
392
+
VS_AUTO_EXPOSURE_TIME_RANGE UMETA(DisplayName = "Auto exposure time range"), /**< Range of exposure auto control in microseconds.\n Used with \ref Camera.setCameraSettings(VIDEO_SETTINGS,int,int) "setCameraSettings()".\n Min/max range between max range defined in DTS.\n By default: [28000 - <fps_time> or 19000] us. \note Only available for ZED X/X Mini cameras.*/
393
+
VS_AUTO_ANALOG_GAIN_RANGE UMETA(DisplayName = "Auto analog gain range"), /**< Range of sensor gain in automatic control.\n Used with \ref Camera.setCameraSettings(VIDEO_SETTINGS,int,int) "setCameraSettings()".\n Min/max range between max range defined in DTS.\n By default: [1000 - 16000] mdB. \note Only available for ZED X/X Mini cameras.*/
394
+
VS_AUTO_DIGITAL_GAIN_RANGE UMETA(DisplayName = "Auto digital gain range"), /**< Range of digital ISP gain in automatic control.\n Used with \ref Camera.setCameraSettings(VIDEO_SETTINGS,int,int) "setCameraSettings()".\n Min/max range between max range defined in DTS.\n By default: [1 - 256]. \note Only available for ZED X/X Mini cameras.*/
395
+
VS_EXPOSURE_COMPENSATION UMETA(DisplayName = "Exposure compensation"), /**< Exposure-target compensation made after auto exposure.\n Reduces the overall illumination target by factor of F-stops.\n Affected value should be between 0 and 100 (mapped between [-2.0,2.0]).\n Default value is 50, i.e. no compensation applied. \note Only available for ZED X/X Mini cameras.*/
396
+
VS_DENOISING UMETA(DisplayName = "Denoising"), /**< Level of denoising applied on both left and right images.\n Affected value should be between 0 and 100.\n Default value is 50. \note Only available for ZED X/X Mini cameras.*/
397
+
VS_LAST
398
+
};
399
+
367
400
/*
368
401
* SDK SVO compression modes
369
402
* see sl::SVO_COMPRESSION_MODE
@@ -511,6 +544,17 @@ enum class ESlPositionalTrackingMode : uint8
511
544
PTM_Quality UMETA(DisplayName = "Quality")
512
545
};
513
546
547
+
/**
548
+
\brief Lists the different states of region of interest auto detection.
ROI_RUNNING UMETA(DisplayName = "Running"), /**< The region of interest auto detection is initializing.*/
554
+
ROI_READY UMETA(DisplayName = "Ready"), /**< The region of interest mask is ready, if auto_apply was enabled, the region of interest mask is being used*/
555
+
ROI_NOT_ENABLED UMETA(DisplayName = "Not Enabled"), /**< The region of interest auto detection is not enabled*/
Enable or disable the image validity verification.
2883
+
This will perform additional verification on the image to identify corrupted data. This verification is done in the grab function and requires some computations.
2884
+
If an issue is found, the grab function will output a warning as sl::ERROR_CODE::CORRUPTED_FRAME.
2885
+
This version doesn't detect frame tearing currently.
0 commit comments