【OpenCV入门指南】第一个OpenCV程序
#include <highgui.h>
#include <cv.h>
#include <STDIO.H>
int main()
{
const char *pstrImageName = "2345_image_file_copy_1.jpg";
const char *pstrWindowsTitle = "OpenCV第一个程序";
//从文件中读取图像
IplImage *pImage = cvLoadImage(pstrImageName, CV_L
原创
2017-08-16 16:36:26 ·
434 阅读 ·
0 评论