图像处理
文章平均质量分 95
Small Cube
MengyaoLi_0201@outlook.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c++ GDAL 完成PCA
c++ GDAL 完成PCA int main() { const char* imagePath = "D:/data/before.img"; const char* txtPath = "D:/data/result.txt"; UpdateRasterFile(imagePath, txtPath); return 0; } 通过UpdateRasterFile(imagePath, txtPath);完成PCA的计算和输出 void UpdateRasterFile(const cha原创 2021-09-02 10:28:03 · 904 阅读 · 0 评论 -
openCV C++ 图像拼接
openCV C++ 图像拼接代码一、思路二、函数解析 代码 #include<iostream> #include<opencv2/opencv.hpp> using namespace std; using namespace cv; void Joint(Mat img1, Mat img2, const string filename) { if (img1.empty() || img2.empty()) { cout << "读取文件失败!" &l原创 2021-09-01 11:42:44 · 5278 阅读 · 0 评论
分享