将IplImage *类型转换为CvMat

时间:2011-12-27 17:28:13

标签: c++ opencv

我想将Image从IplImage *转换为CvMat *以使用cvCountNonZero ..在黑白图像中找到白色区域而不是使用两个for循环(这很慢)。

1 个答案:

答案 0 :(得分:2)

找到的代码段here

CvMat stub, *dst_mat;
dst_mat = cvGetMat(src_img, &stub, 0, 0);