Classes | |
struct | Matrix3x3 |
Structure representing a generic 3*3 matrix. More... | |
struct | Resolution |
Structure containing the width and height of an image. More... | |
struct | CameraConfiguration |
Structure containing information about the camera sensor. More... | |
struct | CameraInformation |
Structure containing information of a single camera (serial number, model, input type, etc.) More... | |
class | Mat |
Class representing 1 to 4-channel matrix of float or uchar, stored on CPU and/or GPU side. More... | |
Enumerations | |
enum class | ERROR_CODE |
List of error codes in the ZED SDK. More... | |
enum class | COORDINATE_SYSTEM |
Lists available coordinates systems for positional tracking and 3D measures. More... | |
enum class | UNIT |
Lists available units for measures. More... | |
enum class | MAT_TYPE |
Lists available sl.Mat formats. More... | |
enum class | COPY_TYPE |
Lists available copy operation on sl.Mat. More... | |
enum class | MEM |
Lists available memory type. More... | |
|
strong |
List of error codes in the ZED SDK.
Enumerator | |
---|---|
CONFIGURATION_FALLBACK | The operation could not proceed with the target configuration but did success with a fallback. |
CAMERA_REBOOTING | The camera is currently rebooting. |
SUCCESS | Standard code for successful behavior. |
FAILURE | Standard code for unsuccessful behavior. |
NO_GPU_COMPATIBLE | No GPU found or CUDA capability of the device is not supported. |
NOT_ENOUGH_GPUMEM | Not enough GPU memory for this depth mode. Try a different mode (such as PERFORMANCE), or increase the minimum depth value (see InitParameters.depthMinimumDistance). |
CAMERA_NOT_DETECTED | No camera was detected. |
SENSORS_NOT_INITIALIZED | The MCU that controls the sensors module has an invalid serial number. You can try to recover it by launching the ZED Diagnostic tool from the command line with the option
|
SENSOR_NOT_DETECTED | A camera with sensor is detected but the sensors (IMU, barometer, ...) cannot be opened. Only the MODEL.ZED does not has sensors. Unplug/replug is required. |
INVALID_RESOLUTION | In case of invalid resolution parameter, such as an upsize beyond the original image size in Camera.RetrieveImage. |
LOW_USB_BANDWIDTH | Insufficient bandwidth for the correct use of the camera. This issue can occur when you use multiple cameras or a USB 2.0 port. |
CALIBRATION_FILE_NOT_AVAILABLE | The calibration file of the camera is not found on the host machine. Use ZED Explorer or ZED Calibration to download the factory calibration file. |
INVALID_CALIBRATION_FILE | The calibration file is not valid. Try to download the factory calibration file or recalibrate your camera using ZED Calibration. |
INVALID_SVO_FILE | The provided SVO file is not valid. |
SVO_RECORDING_ERROR | An error occurred while trying to record an SVO (not enough free storage, invalid file, ...). |
SVO_UNSUPPORTED_COMPRESSION | An SVO related error, occurs when NVIDIA based compression cannot be loaded. |
END_OF_SVO_FILE_REACHED | SVO end of file has been reached. |
INVALID_COORDINATE_SYSTEM | The requested coordinate system is not available. |
INVALID_FIRMWARE | The firmware of the camera is out of date. Update to the latest version. |
INVALID_FUNCTION_PARAMETERS | Invalid parameters have been given for the function. |
CUDA_ERROR | A CUDA error has been detected in the process, in Camera.Grab() or Camera.RetrieveXXX() only. Activate wrapperVerbose in ZEDManager.cs for more info. |
CAMERA_NOT_INITIALIZED | The ZED SDK is not initialized. Probably a missing call to Camera.Open(). |
NVIDIA_DRIVER_OUT_OF_DATE | Your NVIDIA driver is too old and not compatible with your current CUDA version. |
INVALID_FUNCTION_CALL | The call of the function is not valid in the current context. Could be a missing call of Camera.Open(). |
CORRUPTED_SDK_INSTALLATION | The ZED SDK was not able to load its dependencies or some assets are missing. Reinstall the ZED SDK or check for missing dependencies (cuDNN, TensorRT). |
INCOMPATIBLE_SDK_VERSION | The installed ZED SDK is incompatible with the one used to compile the program. |
INVALID_AREA_FILE | The given area file does not exist. Check the path. |
INCOMPATIBLE_AREA_FILE | The area file does not contain enough data to be used or the DEPTH_MODE used during the creation of the area file is different from the one currently set. |
CAMERA_FAILED_TO_SETUP | Failed to open the camera at the proper resolution. Try another resolution or make sure that the UVC driver is properly installed. |
CAMERA_DETECTION_ISSUE | Your camera can not be opened. Try replugging it to another port or flipping the USB-C connector (if there is one). |
CAMERA_ALREADY_IN_USE | Cannot start the camera stream. Make sure your camera is not already used by another process or blocked by firewall or antivirus. |
NO_GPU_DETECTED | No GPU found. CUDA is unable to list it. Can be a driver/reboot issue. |
PLANE_NOT_FOUND | Plane not found. Either no plane is detected in the scene, at the location or corresponding to the floor, or the floor plane doesn't match the prior given. |
MODULE_NOT_COMPATIBLE_WITH_CAMERA | The module you try to use is not compatible with your camera MODEL.
|
MOTION_SENSORS_REQUIRED | The module needs the sensors to be enabled (see InitParameters.sensorsRequired). |
MODULE_NOT_COMPATIBLE_WITH_CUDA_VERSION | The module needs a newer version of CUDA. |
|
strong |
Lists available coordinates systems for positional tracking and 3D measures.
Enumerator | |
---|---|
IMAGE | Standard coordinates system in computer vision. |
LEFT_HANDED_Y_UP | Left-handed with Y up and Z forward. |
RIGHT_HANDED_Y_UP | Right-handed with Y pointing up and Z backward. |
RIGHT_HANDED_Z_UP | Right-handed with Z pointing up and Y forward. |
LEFT_HANDED_Z_UP | Left-handed with Z axis pointing up and X forward |
RIGHT_HANDED_Z_UP_X_FWD | Right-handed with Z pointing up and X forward. |
|
strong |
|
strong |
Lists available sl.Mat formats.
|
strong |
Lists available copy operation on sl.Mat.
Enumerator | |
---|---|
CPU_CPU | Copy data from CPU to CPU. |
CPU_GPU | Copy data from CPU to GPU. |
GPU_GPU | Copy data from GPU to GPU. |
GPU_CPU | Copy data from GPU to CPU. |
|
strong |