65,084
社区成员
发帖
与我相关
我的任务
分享
#include "stdafx.h"
#include <iostream>
#include <stdio.h>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int _tmain(int argc, _TCHAR* argv[])
{
cout << "测试C++程序" << endl;
int a;
cin >> a;
Mat img = imread("lena.jpg");
return 0;
}