first init

This commit is contained in:
2026-03-14 19:38:13 +08:00
commit 183d7fea8d
3 changed files with 60 additions and 0 deletions

15
start/read.cpp Normal file
View File

@@ -0,0 +1,15 @@
// 读取图像
#include<opencv2/opencv.hpp>
#include<iostream>
using namespace std;
using namespace cv;
int main(){
Mat src = imread("/home/bi/下载/1.png");
imshow("input",src);
waitKey(0);
destroyAllWindows();
return 0;
}