//Open the image
Mat img_rgb = imread("sudoku2.png", CV_LOAD_IMAGE_GRAYSCALE);
if (img_rgb.empty())
{
cout<<"Cannot open the image"<<endl;
return;
}
Mat img_bw = img_rgb > 128;
imwrite("image_bw.jpg", img_bw);
现在,我想获取 img_bw 的所有像素并将其保存到矩阵 M (int[img_bw.rows][img_bw.cols])中。如何在 C++ 中做到这一点。