All Projects → stereolabs → Zed Opencv

stereolabs / Zed Opencv

Licence: mit
ZED SDK interface sample for OpenCV

Labels

Projects that are alternatives of or similar to Zed Opencv

Graphicsprogramming
Demos related to OpenGL, Qt/QML, OpenCV and other X technologies.
Stars: ✭ 83 (-13.54%)
Mutual labels:  opencv
Kinectazuredkprogramming
Samples about Kinect Azure DK programming
Stars: ✭ 92 (-4.17%)
Mutual labels:  opencv
Sky Detector
Sky area detection without deep neural networks https://maybeshewill-cv.github.io/sky-detector/
Stars: ✭ 96 (+0%)
Mutual labels:  opencv
Fisheye Stereo Calibration
📷 📷 Fisheye stereo calibration using OpenCV and C++
Stars: ✭ 85 (-11.46%)
Mutual labels:  opencv
Opencv3 Android Sdk With Contrib
Build OpenCV3 Android SDK with contrib modules
Stars: ✭ 90 (-6.25%)
Mutual labels:  opencv
Agender
Real-time estimation of gender and age
Stars: ✭ 95 (-1.04%)
Mutual labels:  opencv
Litiv
C++ implementation pool for computer vision R&D projects.
Stars: ✭ 82 (-14.58%)
Mutual labels:  opencv
Automatic Leaf Infection Identifier
Automatic detection of plant diseases
Stars: ✭ 97 (+1.04%)
Mutual labels:  opencv
Lane Detection For Autonomous Cars
Lane Detection Module using C++ and OpenCV
Stars: ✭ 90 (-6.25%)
Mutual labels:  opencv
Retina Features
Project for segmentation of blood vessels, microaneurysm and hardexudates in fundus images.
Stars: ✭ 95 (-1.04%)
Mutual labels:  opencv
Opencv image comparator
图片相似度计算(直方图、峰值信噪比、结构相似性、感知哈希算法)、轮廓检测、直线检测、圆检测、角点检测、直线交点计算、旋转角度矫正、图像匹配的对应相似处连线、灰度、二值化、直方图均衡化。
Stars: ✭ 87 (-9.37%)
Mutual labels:  opencv
High Dynamic Range Image
Creating HDR image from image stack with multiple exposures
Stars: ✭ 88 (-8.33%)
Mutual labels:  opencv
Gocv Alpine
GoCV-compatible OpenCV 3.4 Alpine 3.7 Docker image
Stars: ✭ 95 (-1.04%)
Mutual labels:  opencv
Sudoku Py
An augmented reality sudoku solver using OpenCV
Stars: ✭ 85 (-11.46%)
Mutual labels:  opencv
Emcvlib
An OpenCV framework for iOS and macOS
Stars: ✭ 96 (+0%)
Mutual labels:  opencv
Mobilenet Ssd
MobileNet-SSD(MobileNetSSD) + Neural Compute Stick(NCS) Faster than YoloV2 + Explosion speed by RaspberryPi · Multiple moving object detection with high accuracy.
Stars: ✭ 84 (-12.5%)
Mutual labels:  opencv
Wow Fish Bot
World of Warcraft ( WoW ) Fish BOT. Python. Simple. For me.
Stars: ✭ 93 (-3.12%)
Mutual labels:  opencv
Picamnn
Survelliance system with deep learning based people detection (YOLO)
Stars: ✭ 97 (+1.04%)
Mutual labels:  opencv
Pybind11 opencv numpy
Implementation of cv::Mat conversion to numpy.array for pybind11
Stars: ✭ 96 (+0%)
Mutual labels:  opencv
Signature Recognition
Verify the authenticity of handwritten signatures through digital image processing and neural networks.
Stars: ✭ 95 (-1.04%)
Mutual labels:  opencv

Stereolabs ZED - OpenCV

This sample is the perfect place to get started coding with the ZED and OpenCV. It shows how to:

  • Capture image, depth and point cloud from the ZED.
  • Convert image and depth map to compatible 32-bits float OpenCV matrix.
  • Display video and depth with OpenCV.
  • Adjust several depth parameters: depth sensing mode, quality, units, resolution.
  • Save side by side image, depth image and point cloud in various formats

Getting started

Prerequisites

OpenCV can be installed from source on Linux, please refer to this guide to proceed with the installation.

C++

Read the guide to learn how to build and launch this sample in C++.

Python

Read the guide to learn how to build and launch this sample in Python.

Installing OpenCV

Installing OpenCV on Windows

OpenCV provides already compiled binaries, it can be downloaded at https://opencv.org/releases/

Installing OpenCV on Linux

Some sample can require OpenCV, here is a tutorial on how to install it.

OpenCV can be downloaded at this location : https://opencv.org/releases/

For a more detailed OpenCV tutorial installation, refer to the opencv documention.

Installation steps

  • Install the required dependencies
sudo apt-get install build-essential cmake libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
wget https://github.com/opencv/opencv/archive/4.1.0.zip -O /tmp/opencv_src.zip
cd ~/
unzip /tmp/opencv_src.zip ; rm /tmp/opencv_src.zip
  • Navigate to the extracted sources, create a temporary build directory and enter it. For example,
cd ~/opencv-*
mkdir build
cd build
  • Run cmake
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_JAVA=OFF -DWITH_OPENGL=ON ..
  • Execute make. The compilation can take a while
make -j$(nproc)
  • Install the libraries
sudo make install

Support

If you need assistance go to our Community site at https://community.stereolabs.com/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].