Classes | |
| class | Camera |
| This class serves as the primary interface between the camera and the various features provided by the SDK. More... | |
| class | InitParameters |
| Class containing the options used to initialize the sl.Camera object. More... | |
| struct | RecordingParameters |
| Structure containing the options used to record. More... | |
| struct | StreamingParameters |
| Structure containing the options used to stream with the ZED SDK. More... | |
| struct | DeviceProperties |
| Structure containing information about the properties of a camera. More... | |
| struct | StreamingProperties |
| Structure containing information about the properties of a streaming device. More... | |
| struct | HealthStatus |
| Structure containing the self-diagnostic results of the camera (image, depth, sensor health). Retrieved via Camera.GetHealthStatus. More... | |
| struct | RecordingStatus |
| Structure containing information about the status of the recording. More... | |
| struct | InputType |
| Structure defining the input type used in the ZED SDK. More... | |
Enumerations | |
| enum class | INPUT_TYPE |
| Lists available input types in the ZED SDK. More... | |
| enum class | BUS_TYPE |
| Lists available LIVE input type in the ZED SDK. More... | |
| enum class | CAMERA_STATE |
| Lists possible camera states. More... | |
| enum class | RESOLUTION |
| Lists available resolutions. More... | |
| enum class | FLIP_MODE |
| Lists possible flip modes of the camera. More... | |
| enum class | MODEL |
| Lists ZED camera model. SL_MODEL in C wrapper. More... | |
| enum class | VIEW |
| Lists available views. More... | |
| enum class | VIDEO_SETTINGS |
| Lists available camera settings for the camera (contrast, hue, saturation, gain, ...). More... | |
| enum class | TIME_REFERENCE |
| Lists possible time references for timestamps or data. More... | |
| enum class | TIMESTAMP_CLOCK |
| Lists available clock sources for SDK timestamps. More... | |
| enum class | SVO_COMPRESSION_MODE |
| Lists available compression modes for SVO recording. More... | |
| enum class | SVO_ENCODING_PRESET |
| Lists available encoding presets for SVO recording. Controls the speed/quality tradeoff of the GPU hardware encoder. More... | |
| enum class | STREAMING_CODEC |
| Lists the different encoding types for image streaming. More... | |
|
strong |
Lists available input types in the ZED SDK.
| Enumerator | |
|---|---|
| USB | USB input mode |
| SVO | SVO file input mode |
| STREAM | STREAM input mode (requires to use EnableStreaming() / DisableStreaming() on the "sender" side) |
| GMSL | GMSL input mode |
|
strong |
|
strong |
|
strong |
Lists available resolutions.
|
strong |
Lists possible flip modes of the camera.
|
strong |
Lists ZED camera model. SL_MODEL in C wrapper.
|
strong |
Lists available views.
| Enumerator | |
|---|---|
| LEFT | Left BGRA image. Each pixel contains 4 unsigned char (B, G, R, A). |
| RIGHT | Right BGRA image. Each pixel contains 4 unsigned char (B, G, R, A). |
| LEFT_GREY | Left gray image. Each pixel contains 1 unsigned char. |
| RIGHT_GREY | Right gray image. Each pixel contains 1 unsigned char. |
| LEFT_NV12_UNRECTIFIED | Left NV12 unrectified image. |
| RIGHT_NV12_UNRECTIFIED | Right NV12 unrectified image. |
| LEFT_UNRECTIFIED | Left BGRA unrectified image. Each pixel contains 4 unsigned char (B, G, R, A). |
| RIGHT_UNRECTIFIED | Right BGRA unrectified image. Each pixel contains 4 unsigned char (B, G, R, A). |
| LEFT_UNRECTIFIED_GREY | Left gray unrectified image. Each pixel contains 1 unsigned char. |
| RIGHT_UNRECTIFIED_GREY | Right gray unrectified image. Each pixel contains 1 unsigned char. |
| SIDE_BY_SIDE | Left and right image (the image width is therefore doubled). Each pixel contains 4 unsigned char (B, G, R, A). |
| DEPTH | Color rendering of the depth. Each pixel contains 4 unsigned char (B, G, R, A).
|
| CONFIDENCE | Color rendering of the depth confidence. Each pixel contains 4 unsigned char (B, G, R, A).
|
| NORMALS | Color rendering of the normals. Each pixel contains 4 unsigned char (B, G, R, A).
|
| DEPTH_RIGHT | Color rendering of the right depth mapped on right sensor. Each pixel contains 4 unsigned char (B, G, R, A).
|
| NORMALS_RIGHT | Color rendering of the normals mapped on right sensor. Each pixel contains 4 unsigned char (B, G, R, A).
|
| LEFT_BGRA | Alias of LEFT |
| LEFT_BGR | Left image. Each pixel contains 3 unsigned char (B, G, R). |
| RIGHT_BGRA | Alias of RIGHT |
| RIGHT_BGR | Right image. Each pixel contains 3 unsigned char (B, G, R). |
| LEFT_UNRECTIFIED_BGRA | Alias of LEFT_UNRECTIFIED |
| LEFT_UNRECTIFIED_BGR | Left unrectified image. Each pixel contains 3 unsigned char (B, G, R). |
| RIGHT_UNRECTIFIED_BGRA | Alias of RIGHT_UNRECTIFIED |
| RIGHT_UNRECTIFIED_BGR | Right unrectified image. Each pixel contains 3 unsigned char (B, G, R). |
| SIDE_BY_SIDE_BGRA | Alias of SIDE_BY_SIDE |
| SIDE_BY_SIDE_BGR | Side by side image. Each pixel contains 3 unsigned char (B, G, R). |
| SIDE_BY_SIDE_GRAY | gray scale side by side image. Each pixel contains 1 unsigned char. |
| SIDE_BY_SIDE_UNRECTIFIED_BGRA | Unrectified side by side image. Each pixel contains 4 unsigned char (B, G, R, A). |
| SIDE_BY_SIDE_UNRECTIFIED_BGR | Unrectified side by side image. Each pixel contains 3 unsigned char (B, G, R). |
| SIDE_BY_SIDE_UNRECTIFIED_GRAY | Grayscale unrectified side by side image. Each pixel contains 1 unsigned char. |
| DEPTH_BGRA | Alias of DEPTH |
| DEPTH_BGR | Depth image. Each pixel contains 3 unsigned char (B, G, R). |
| DEPTH_GRAY | Grayscale depth image. Each pixel contains 1 unsigned char. |
| CONFIDENCE_BGRA | Alias of CONFIDENCE |
| CONFIDENCE_BGR | Confidence image. Each pixel contains 3 unsigned char (B, G, R). |
| CONFIDENCE_GRAY | Grayscale confidence image. Each pixel contains 1 unsigned char. |
| NORMALS_BGRA | Alias of NORMALS |
| NORMALS_BGR | Normals image. Each pixel contains 3 unsigned char (B, G, R). |
| NORMALS_GRAY | Grayscale normals image. Each pixel contains 1 unsigned char. |
| DEPTH_RIGHT_BGRA | Alias of DEPTH_RIGHT |
| DEPTH_RIGHT_BGR | Depth right image. Each pixel contains 3 unsigned char (B, G, R). |
| DEPTH_RIGHT_GRAY | Grayscale depth right image. Each pixel contains 1 unsigned char. |
| NORMALS_RIGHT_BGRA | Alias of NORMALS_RIGHT |
| NORMALS_RIGHT_BGR | Normals right image. Each pixel contains 3 unsigned char (B, G, R). |
| NORMALS_RIGHT_GRAY | Grayscale normals right image. Each pixel contains 1 unsigned char. |
|
strong |
Lists available camera settings for the camera (contrast, hue, saturation, gain, ...).
| Enumerator | |
|---|---|
| BRIGHTNESS | Brightness control.
|
| CONTRAST | Contrast control
|
| HUE | Hue control
|
| SATURATION | Saturation control |
| SHARPNESS | Digital sharpening control |
| GAMMA | ISP gamma control |
| GAIN | Gain control
|
| EXPOSURE | Exposure control
|
| AEC_AGC | Defines if the GAIN and EXPOSURE are in automatic mode or not. |
| AEC_AGC_ROI | Defines the region of interest for automatic exposure/gain computation. |
| WHITEBALANCE_TEMPERATURE | Color temperature control
|
| WHITEBALANCE_AUTO | Defines if the white balance is in automatic mode or not. |
| LED_STATUS | Status of the front LED of the camera.
|
| EXPOSURE_TIME | Exposure time control in microseconds. Only available for GMSL2-based camera (ZED-X, ZED-X Mini, ZED-Xone,...) .
|
| ANALOG_GAIN | Analog gain (sensor) control in mDB. Use this value to get the real analog gain in mdB.
|
| DIGITAL_GAIN | Digital gain (ISP) as a factor.
|
| AUTO_EXPOSURE_TIME_RANGE | Range of exposure auto control in microseconds.
|
| AUTO_ANALOG_GAIN_RANGE | Range of sensor gain in automatic control.
|
| AUTO_DIGITAL_GAIN_RANGE | Range of digital ISP gain in automatic control.
|
| EXPOSURE_COMPENSATION | Exposure-target compensation made after auto exposure.
|
| DENOISING | Level of denoising applied on both left and right images.
|
| SCENE_ILLUMINANCE | Level of illuminance of the scene calculated by the ISP. Can be used to determine the level of light in the scene and adjust settings accordingly.
|
| AE_ANTIBANDING | AE anti-banding mode. Affected value should be between 0 and 3. 0: OFF, 1: AUTO, 2: 50Hz, 3: 60Hz. Default value is 0 (OFF).
|
|
strong |
|
strong |
Lists available clock sources for SDK timestamps.
Selects the clock used internally by the SDK to timestamp images and sensor data. Both image and IMU timestamps always use the same selected clock, ensuring coherent results.
Note: this is a process-wide setting. Use Camera.SetTimestampClock before opening any camera.
|
strong |
Lists available compression modes for SVO recording.
|
strong |
Lists available encoding presets for SVO recording. Controls the speed/quality tradeoff of the GPU hardware encoder.
|
strong |