我正在使用这个程序来读取和显示图像。我不知道为什么它会显示这个奇怪的错误:
未知函数中的断言失败
(scn==3 || scn ==4)
,文件......\src\modules\imgproc\src\color.cpp line 3326
我更改了一些图像,有时它运行没有错误,但即使它运行和所有内容,它也显示窗口而不是其中的图像。怎么了?
#include "stdafx.h"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
using namespace cv;
using namespace std;
void main()
{
Mat leftImg,frame=imread("C:\\Users\\user\\Downloads\\stereo_progress.png");
leftImg=imread("C:\\Users\\user\\Downloads\\dm_sl.gif");//add of left camera
cvtColor(leftImg,leftImg,CV_BGR2GRAY);
imwrite("imreadtest.txt",leftImg);
imshow("cskldnsl",leftImg);
getchar();
}