如何在iOS中使用OpenCV进行检索

时间:2017-08-24 09:46:46

标签: c++ ios opencv

我在OpenCV中为网络摄像头找到了检索功能 https://github.com/BelBES/HandDetector/blob/master/main.cpp

cv::VideoCapture cap(CV_CAP_OPENNI);
cap.retrieve(mat, CV_16UC1);

我可以在iOS中以相同的方式检索它吗? 我尝试过跟随,但它只显示黑色。

mat.convertTo(depthMap, CV_8UC1, 1.0/255);

有什么想法吗? 或者,我如何将此main.cpp转换为iOS?

1 个答案:

答案 0 :(得分:0)

在iOS框架opencv2.framework中,有一个类型CvCapture,它是C ++中的cv :: VideoCapture:

enter image description here

试试吧。