在图像中截取小图并保存
生活随笔
收集整理的這篇文章主要介紹了
在图像中截取小图并保存
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
? ? 實現(xiàn)以橫向步長step_row、縱向步長step_col,在一幅大圖上剪裁寬度為width、高度為height的小圖像,圖像命名形式為“數(shù)字(遞增)_大圖名”格式,將小圖保存在argv[6]的文件夾中。
#include <opencv2/opencv.hpp> #include <string> #include <iostream> using namespace std; using namespace cv;int main (int argc, char *argv[]){Mat img = imread(argv[1], 0);int width = atoi(argv[2]);int height = atoi(argv[3]);int step_col = atoi(argv[4]);int step_row = atoi(argv[5]);int index=0;stringstream name;for (int j = 0; j < img.cols; j = j + step_col){if (j + width > img.cols)break;for (int i = 0; i < img.rows; i = i + step_row){cout << j << endl;cout << i << endl;if (i + height > img.rows)break;char str[256]; snprintf(str, sizeof(str), "%d", index);string ss = str;name << argv[6] + ss + "_" + argv[1];imwrite(name.str(), img(Rect(j, i, width, height)));name.clear();name.str(std::string());index++;} }return 0; }?
轉(zhuǎn)載于:https://www.cnblogs.com/nannan-yhx/p/10406346.html
總結(jié)
以上是生活随笔為你收集整理的在图像中截取小图并保存的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: OpenGL pipeline (ver
- 下一篇: 常用工具类总结