我是 OpenCV 和 Visual Studio 图像处理的初学者。我有一段我不明白的代码:
Mat image;
image = imread(filename, IMREAD_COLOR); // Read the file
if (! image.data ) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl ;
return -1;
}
!
在第三行中,是什么.data
意思?他们如何检查无效输入?