getRectSubPix函数
生活随笔
收集整理的這篇文章主要介紹了
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代碼:
<span style="font-family:sans-serif;"><span style="font-size:18px;">#include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <iostream> #include<cv.h> #include<stdlib.h> using namespace cv; using namespace std;int main() {Mat src, dst;src = imread("D:6.jpg");/*Mat kx = (Mat_<float>(1, 3) << 0,-1,0);Mat ky = (Mat_<float>(1, 3) << -1,0, -1);sepFilter2D(src, dst, src.depth(),kx,ky,Point(-1,-1),0,BORDER_DEFAULT );*/getRectSubPix(src, Size(src.cols / 5, src.rows / 5), Point2f(src.cols / 2, src.rows / 2), dst, -1);imshow("shiyan", dst);waitKey(0);return 0; }</span></span>
總結
以上是生活随笔為你收集整理的getRectSubPix函数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: getRotationMatrix2D函
- 下一篇: getAffineTransform函数