No, imread works, but returns an invalid image. Like I said, it gives a 1 channel image. But when I call imshow with the loaded image, it gives this error.
A part of my code:
int _tmain(int argc, _TCHAR *argv[])
{
// put the input_path parameter in a string variable.
string in_path = argv[1];
printf("Reading image from file: %s", in_path.c_str());
cv::Mat img = cv::imread(in_path);
printf("%i channels in image %s.", img.channels(), in_path.c_str()); // in debug, it has 3, in release it has 1 ???
cv::imshow("image", img); // this is where the exception is thrown!
}
argv[1] is a valid path to an image.
BTW: How do I get my code to show up right on this site?
↧