我想将图像从IplImage *转换为CvMat *,以使用cvCountNonZero ..在黑白图像中查找白色区域,而不是使用两个for循环(这很慢)。
最佳答案
找到了代码段here:
CvMat stub, *dst_mat;
dst_mat = cvGetMat(src_img, &stub, 0, 0);
关于c++ - 将IplImage *类型转换为CvMat,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8647444/