getRectSubPix函数

来源:互联网 发布:手机透明屏幕软件 编辑:程序博客网 时间:2024/05/11 15:48

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代码:

[cpp] view plain copy
  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.   
  10.   
  11. int main()  
  12. {  
  13.     Mat src, dst;  
  14.     src = imread("D:6.jpg");  
  15.     /*Mat kx = (Mat_<float>(1, 3) << 0,-1,0); 
  16.     Mat ky = (Mat_<float>(1, 3) << -1,0, -1); 
  17.     sepFilter2D(src, dst, src.depth(),kx,ky,Point(-1,-1),0,BORDER_DEFAULT );*/  
  18.     getRectSubPix(src, Size(src.cols / 5, src.rows / 5), Point2f(src.cols / 2, src.rows / 2), dst, -1);  
  19.     imshow("shiyan", dst);  
  20.     waitKey(0);  
  21.     return 0; 
0 0