《学习OpenCV》一书中的第一个程序如何在OpenCV2.3下运行?我已成功安装OpenCV2.3,用其他程序测试过。
#include"highgui.h"intmain(intargc,char**argv){IplImage*img=cvLoadImage(argv[1]);cvNa...
#include "highgui.h"
int main( int argc, char** argv )
{
IplImage* img = cvLoadImage( argv[1] );
cvNamedWindow("Example1", CV_WINDOW_AUTOSIZE );
cvShowImage("Example1", img );
cvWaitKey(0);
cvReleaseImage( &img );
cvDestroyWindow("Example1");
} 展开
int main( int argc, char** argv )
{
IplImage* img = cvLoadImage( argv[1] );
cvNamedWindow("Example1", CV_WINDOW_AUTOSIZE );
cvShowImage("Example1", img );
cvWaitKey(0);
cvReleaseImage( &img );
cvDestroyWindow("Example1");
} 展开
2个回答
展开全部
#include "highgui.h"
int main( int argc, char** argv )
{
IplImage* img = cvLoadImage( argv[1] );//图片的名字···相对的或是绝对的 绝对就要把那张图片拷到工程文件夹下
cvNamedWindow("Example1", CV_WINDOW_AUTOSIZE );
cvShowImage("Example1", img );
cvWaitKey(0);
cvReleaseImage( &img );
cvDestroyWindow("Example1");
}
int main( int argc, char** argv )
{
IplImage* img = cvLoadImage( argv[1] );//图片的名字···相对的或是绝对的 绝对就要把那张图片拷到工程文件夹下
cvNamedWindow("Example1", CV_WINDOW_AUTOSIZE );
cvShowImage("Example1", img );
cvWaitKey(0);
cvReleaseImage( &img );
cvDestroyWindow("Example1");
}
展开全部
#include "opencv.hpp"
using namespace cv;
int main( int argc, char** argv )
{
Mat img = imread( argv[1] );
namedWindow("Example1", CV_WINDOW_AUTOSIZE );
imshow("Example1", img );
waitKey(0);
destroyWindow("Example1");
}
using namespace cv;
int main( int argc, char** argv )
{
Mat img = imread( argv[1] );
namedWindow("Example1", CV_WINDOW_AUTOSIZE );
imshow("Example1", img );
waitKey(0);
destroyWindow("Example1");
}
更多追问追答
追问
还是不行啊!
而且这个程序读入的是什么图片呢?
我以前用的都是C++版本的:image=imread("img.tif");对C语言的方式不是很懂啊!
追答
你不行的原因是什么?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询