zed-open-capture | Low level camera driver for the ZED stereo camera family | Camera library
kandi X-RAY | zed-open-capture Summary
kandi X-RAY | zed-open-capture Summary
The ZED Open Capture is a multi-platform, open-source C++ library for low-level camera and sensor capture for the ZED stereo camera family. It doesn't require CUDA and therefore can be used on many desktop and embedded platforms. The open-source library provides methods to access raw video frames, calibration data, camera controls and raw data from the camera sensors (on ZED 2 and ZED Mini). A synchronization mechanism is provided to get the correct sensor data associated to a video frame. Note: While in the ZED SDK all output data is calibrated and compensated, here the extracted raw data is not corrected by the camera and sensor calibration parameters. You can retrieve camera and sensor calibration data using the ZED SDK to correct your camera data.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of zed-open-capture
zed-open-capture Key Features
zed-open-capture Examples and Code Snippets
$ mkdir build
$ cd build
$ cmake ..
$ make -j$(nproc)
$ mkdir build
$ cd build
$ cmake .. -DBUILD_EXAMPLES=OFF
$ make -j$(nproc)
$ mkdir build
$ cd build
$ cmake .. -DBUILD_SENSORS=OFF -DBUILD_EXAMPLES=OFF
$ make -j$(nproc)
$ mkdir build
$ cd buil
#include "sensorcapture.hpp"
sl_oc::sensors::SensorCapture sens;
std::vector devs = sens.getDeviceList();
sens.initializeSensors( devs[0] );
const sl_oc::sensors::data::Imu imuData = sens.getLastIMUData(5000);
const sl_oc::sensors::data::Magnetometer
$ zed_open_capture_video_example
$ zed_open_capture_control_example
$ zed_open_capture_rectify_example
$ zed_open_capture_sensors_example
$ zed_open_capture_sync_example
Community Discussions
Trending Discussions on zed-open-capture
QUESTION
I am trying to use this ZED Open Capture library for using the ZED Mini camera for my project on RaspberryPi. I succesfully installed the library and the shared object file is at /usr/local/lib/libzed_open_capture.so
and the include headers are at the location /usr/local/include/zed-open-capture/
.
To include this library I am adding the following lines to my CMakeLists.txt
ANSWER
Answered 2022-Jan-11 at 07:44According to the ZED Open Capture's CMakeLists.txt
:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install zed-open-capture
Install GCC compiler and build tools $ sudo apt install build-essential
Install CMake build system $ sudo apt install cmake
Install HIDAPI and LIBUSB libraries: $ sudo apt install libusb-1.0-0-dev libhidapi-libusb0 libhidapi-dev
Install OpenCV to build the examples (optional) $ sudo apt install opencv-dev
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page