我将img分成3个单独的Mat,如下所示:

std::vector<Mat> planes(3);
cv::split(img, planes);
cv::Mat R = planes[2];
cv::Mat G = planes[1];
cv::Mat B = planes[0];

现在,我要将这些R,G和Bs值存储在三个不同的数组中。像这样的东西:
例如R
std::vector<Mat> planes(3);
cv::split(img, planes);
cv::Mat R = planes[2];
int r[20];

for (i=0 ; i<20 ; i++)

{

r[i]= R[i];

}

我知道这会出错。那么如何正确实现此功能?

最佳答案

这是您可以为R(明显扩展到B&G)的方法

std::vector<Mat> planes(3);
cv::split(img, planes);
cv::Mat R;

// change the type from uchar to int
planes[2].convertTo(R, CV_32SC1);

// get a pointer to the first row
int* r = R.ptr<int>(0);

// iterate of all data  (R has to be continuous
// with no row padding to do it like this)
for (i = 0 ; i < R.rows * R.cols; ++i)
{    // you have to write the following :-)
     your_code(r[i]);
}

10-08 11:02