函式cvResize 重新調整圖像src(或它的ROI),使它精確匹配目標dst(或其ROI)。
void cvResize( const CvArr* src, CvArr* dst, int interpolation=CV_INTER_LINEAR );
參數列表:
src 源圖像
dst 目標圖像
interpolation 修改、插補的方法,取值如下:
·CV_INTER_NN - 最近-鄰居插補
·CV_INTER_LINEAR - 雙線性插值(默認方法)
·CV_INTER_AREA - 像素麵積相關重採樣。當縮小突刺昂視。該方法可以避免波紋的出現。當放大圖像是,類似於方法CV_INTER_NN。(It is the preferred method for image decimation that gives moire-free results. In case of zooming it is similar to CV_INTER_NN method. )
·CV_INTER_CUBIC - 雙三次插值。