Oliver Braun

Results 21 comments of Oliver Braun

Hi, You can share both memory between opencv mat and sl mat : ``` my_opencv_mat = my_sl_mat.get_data(sl.MEM.CPU, False) //use opencv function on my_opencv_mat ex : cv2.rectange(my_opencv_mat,10,10,10,10...) ```

Hi, You can use the sample for svo export here : https://github.com/stereolabs/zed-sdk/tree/master/recording/export/svo You just need to create a single mode left only. You can resize the image using cv::resize() and...

Hi, It could be that you used a "old" driver which is not compatible with CUDA 8.0 (which is quite recent). Note that the GT650M is "in theory" not compatible...

Hi, Make sure you are using Win64 compiler when generating the solution with Cmake (VS2012/2013 Win64). You also need to link with x64 libraries (zed sdk, opencv, cuda)...

Hi, You need to use the compression for the SVO file to get the timestamp inside the file : with ZED Explorer, in the settings window >> general, select one...

Hi, you need to call cmake with -DCUDA_USE_STATIC_CUDA_RUNTIME=false to avoid opencv linking error on the TX1. For all your X1 projects. Best, OB.

You should look at the SVO Converter samples. I think it is more what you are looking for. It is not on github but on the samples folder of the...

I think this is more related to your VS installation (maybe some package missing?). You can also try a earlier version of cmake. On my side, I am using cmake...

Hi, Did you try to reduce the confidence threshold with setConfidenceThreshold(50) and get the depth map with that settings? If still some points are detected, it means that there is...