欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

OpenCV实现图像切割功能

时间:2021-03-13 09:46:38|栏目:C代码|点击:

openCV实现将图像切成m*n块,供大家参考,具体内容如下

一、代码部分:

#include "stdafx.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream> 
#include <vector> 
#include<string>
#include<sstream>
using namespace std;
using namespace cv;

//Cut an image into m*n patch
void Cut_img(Mat src_img, int m, int n, vector<Mat> ceil_img)
{
  int t = m * n;
  int height = src_img.rows;
  int width = src_img.cols;

  int ceil_height = height / m;
  int ceil_width = width / n;
  Mat roi_img;
  //String concatenation
  ostringstream oss;
  string str, str1, str2;

  Point p1, p2;
  for (int i = 0; i<m; i++)
  {
    for (int j = 0; j<n; j++)
    {
      Rect rect(j*ceil_width, i*ceil_height, ceil_width, ceil_height);
      src_img(rect).copyTo(roi_img);
      ceil_img.push_back(roi_img);

      oss << i;      
      str1 = oss.str();
      oss.str("");
      oss << j;
      str2 = oss.str();
      oss.str("");
      str = "roi_img_" + str1 + "_" + str2;

      imshow(str, roi_img);

      IplImage *ipl_roi_img=&IplImage(roi_img);
      //save processed img
      char tmp[100]="\0";
      sprintf(tmp,"..\\post_img\\71253_%d_%d.jpg",i,j);
      cvSaveImage(tmp,ipl_roi_img);
    }
  }
}
int _tmain(int argc, _TCHAR* argv[])
{
  char *img_name_path="..\\image\\71253.jpg";
  Mat img = imread(img_name_path,1);
  imshow("src_img", img);
  waitKey(0);
  int m = 2;
  int n = 2;
  vector<Mat> ceil_img ;
  Cut_img(img, m, n, ceil_img);
  cvWaitKey(0);
  return 0;
}

二、程序运行结果:

(1)原图像:

(2)切割后图像:

上一篇:c语言 字符串的拼接和分割实例

栏    目:C代码

下一篇:一道超经典的C++结构体的题目

本文标题:OpenCV实现图像切割功能

本文地址:http://www.codeinn.net/misctech/79622.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有