搜索资源列表
cvResize
- Resize 圖像大小變換 void cvResize( const CvArr* src, CvArr* dst, int interpolation=CV_INTER_LINEAR ) src 輸入圖像. dst 輸出圖像. interpolation 插值方法: * CV_INTER_NN - 最近鄰插值, * CV_INTER_LINEAR - 雙線性插值 (預設使用) * CV_INTER_AREA
chazhi
- 利用插值法对图像进行放大,分别应用了最邻近差值和线性差值-Nearest Neighbor Interpolation Bilinear Interpolation