opencv批量读取图片并剪裁成固定大小存入本地文件夹
程序员文章站
2022-04-09 13:08:46
...
运行环境为vs2017+opencv3.4 debug模式 x64
#include <iostream>
#include <fstream>
#include <stdlib.h> //srand()和rand()函数
#include <time.h> //time()函数
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/ml/ml.hpp>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int CropImageCount = 0; //裁剪出来的负样本图片个数
int main()
{
Mat src;
int x=1;
char ImgName[256];//裁剪出来的负样本图片文件名
while (x<307)
{
sprintf_s(ImgName, "D:\\neg\\neg (%d).jpg", x);
cout << "处理:" << ImgName << endl;
src = imread(ImgName);//读取图片
//图片大小应该能能至少包含一个64*128的窗口
if (src.cols >= 64 && src.rows >= 128)
{
srand(time(NULL));//设置随机数种子
//从每张图片中随机裁剪10个64*128大小的不包含人的负样本
for (int i = 0; i<10; i++)
{
int x = (rand() % (src.cols - 64)); //左上角x坐标
int y = (rand() % (src.rows - 128)); //左上角y坐标
//cout<<x<<","<<y<<endl;
Mat imgROI = src(Rect(x, y, 64, 128));
sprintf_s(ImgName, "D:\\negphoto\\noperson%06d.jpg", CropImageCount);//生成裁剪出的负样本图片的文件名
CropImageCount++;
IplImage result = IplImage(imgROI);
const CvArr* I = (CvArr*)&result;
cvSaveImage(ImgName, I);//保存文件
}
}
x++;
}
system("pause");
return 0;
}