stereolabs / zed-opencv

ZED SDK interface sample for OpenCV
https://www.stereolabs.com/docs/opencv/
MIT License
137 stars 79 forks source link

How to read svo files without CUDA? #13

Closed chuong closed 7 years ago

chuong commented 7 years ago

Since ZED SDK depends on CUDA, it is difficult to process .svo files on PC without an Nvidia GPU, even just to read images. Is there any example code to do this? What is the format of .svo files?

adujardin commented 7 years ago

Hi,

The only way to read an SVO file without CUDA is to open it with ZED Explorer. You can't open a .svo file from the code without the ZED SDK.

If you want to record images and process it without the ZED SDK, you should record a video file (AVI or something similar).

chuong commented 7 years ago

Thanks @adujardin for the suggestion. I can now access the camera as a normal webcam with OpenCV and save images in any format.