Merge pull request #5232 from sturkmen72:patch-6

This commit is contained in:
Vadim Pisarevsky
2015-08-27 07:07:53 +00:00
3 changed files with 64 additions and 96 deletions

View File

@@ -1968,8 +1968,8 @@ way:
// specify fx and fy and let the function compute the destination image size.
resize(src, dst, Size(), 0.5, 0.5, interpolation);
@endcode
To shrink an image, it will generally look best with CV_INTER_AREA interpolation, whereas to
enlarge an image, it will generally look best with CV_INTER_CUBIC (slow) or CV_INTER_LINEAR
To shrink an image, it will generally look best with cv::INTER_AREA interpolation, whereas to
enlarge an image, it will generally look best with cv::INTER_CUBIC (slow) or cv::INTER_LINEAR
(faster but still looks OK).
@param src input image.