标签: arrays opencv
我有一个2D数组(cv :: MAT),我想找出所有非零值元素的索引。换句话说,[x,y] = find(A~ = 0)?
OpenCV可以以cv :: Point格式返回结果吗?
答案 0 :(得分:1)
检查文档,它就在那里!
http://opencv.willowgarage.com/documentation/cpp/core_basic_structures.html
您将使用对cv::Mat
cv::Mat
M.at<double>(i,j) += 1.f;