getRectSubPix函数

时间:2020-12-16 15:32:06

转自http://blog.csdn.net/qq_18343569/article/details/47953441

getRectSubPix函数

2015-08-24 16:47 1104人阅读 评论(0) 收藏 举报
getRectSubPix函数 分类:
opencv函数库 之图像几何变换(8) getRectSubPix函数

getRectSubPix函数

函数作用:

从原图像中提取提取一个感兴趣的矩形区域图像

函数调用形式:

C++: void getRectSubPix(InputArray image, Size patchSize, Point2f center, OutputArray patch, int patchType=-1 )

 

参数理解:

InputArray image:输入图像

Size patchSize:获取矩形的大小

Point2f center:获取的矩形在原图像中的位置

OutputArray patch:表示输出的图像

int patchType=-1 :表示输出图像的深度

OpenCV代码:

  1. <span style="font-family:sans-serif;"><span style="font-size:18px;">#include <opencv2/core/core.hpp>
  2. #include <opencv2/highgui/highgui.hpp>
  3. #include <opencv2/imgproc/imgproc.hpp>
  4. #include <iostream>
  5. #include<cv.h>
  6. #include<stdlib.h>
  7. using namespace cv;
  8. using namespace std;
  9. int main()
  10. {
  11. Mat src, dst;
  12. src = imread("D:6.jpg");
  13. /*Mat kx = (Mat_<float>(1, 3) << 0,-1,0);
  14. Mat ky = (Mat_<float>(1, 3) << -1,0, -1);
  15. sepFilter2D(src, dst, src.depth(),kx,ky,Point(-1,-1),0,BORDER_DEFAULT );*/
  16. getRectSubPix(src, Size(src.cols / 5, src.rows / 5), Point2f(src.cols / 2, src.rows / 2), dst, -1);
  17. imshow("shiyan", dst);
  18. waitKey(0);
  19. return 0;
  20. }</span></span>  getRectSubPix函数