为什么用cvLoadImage函数 图像读取不出来 10

#include<stdlib.h>#include<stdio.h>#include<math.h>#include<cv.h>#include<highgui.h>i... #include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <cv.h>
#include <highgui.h>

int main(int argc, char *argv[])
{
IplImage* img = 0;
int height,width,step,channels;
uchar *data;
int i,j,k;

if(argc<2){
printf("Usage: main <image-file-name>\n\7");
exit(0);
}

// load an image
img=cvLoadImage(argv[1]);
if(!img){
printf("Could not load image file: %s\n",argv[1]);
exit(0);
}

// get the image data
height = img->height;
width = img->width;
step = img->widthStep;
channels = img->nChannels;
data = (uchar *)img->imageData;
printf("Processing a %dx%d image with %d channels\n",height,width,channels);

// create a window
cvNamedWindow("mainWin", CV_WINDOW_AUTOSIZE);
cvMoveWindow("mainWin", 100, 100);
// show the image
cvShowImage("mainWin", img );

// wait for a key
cvWaitKey(0);

// release the image
cvReleaseImage(&img );
return 0;
}
展开
 我来答
百度网友8c846ca
2012-11-15 · TA获得超过126个赞
知道答主
回答量:29
采纳率:0%
帮助的人:22.8万
展开全部
看看图片1.jpg是不是在路径E:\OpenCv练习\Debug目录下!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yanzi1225627
2012-11-15
知道答主
回答量:52
采纳率:0%
帮助的人:16万
展开全部
路径出错了!!!用绝对路径
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式