한 폭 의 그림 을 여러 개의 작은 그림 으로 나 누 어 저장 합 니 다.

883 단어 opencv

#include     

#include "opencv2/opencv.hpp"

#include     

#include   

#include   

#include   

using namespace std;

using namespace cv;



void main()

{       //           

	string outpath = "F:\\data\\";

	Mat img = imread("digits.png"); //          ,  imread    

	int t = 0;

	int m = img.cols /20;    //m*n          

	int n = img.rows /20;    

	Vector ceil_img;  //   ceil_img     

	Vector name;     //   name        , 0 m*n-1

	for (t; t < m*n; t++)

		name.push_back(t);



	Mat image_cut, roi_img, tim_img;

	for (int j = 0; j 

좋은 웹페이지 즐겨찾기