@@ -2350,10 +2375,10 @@ CV_32FC1, or CV_32FC2. See convertMaps for details on converting a floating poin
...
@@ -2350,10 +2375,10 @@ CV_32FC1, or CV_32FC2. See convertMaps for details on converting a floating poin
representation to fixed-point for speed.
representation to fixed-point for speed.
@param map2 The second map of y values having the type CV_16UC1, CV_32FC1, or none (empty map
@param map2 The second map of y values having the type CV_16UC1, CV_32FC1, or none (empty map
if map1 is (x,y) points), respectively.
if map1 is (x,y) points), respectively.
@param interpolation Interpolation method (see cv::InterpolationFlags). The method INTER_AREA is
@param interpolation Interpolation method (see #InterpolationFlags). The method #INTER_AREA is
not supported by this function.
not supported by this function.
@param borderMode Pixel extrapolation method (see cv::BorderTypes). When
@param borderMode Pixel extrapolation method (see #BorderTypes). When
borderMode=BORDER_TRANSPARENT, it means that the pixels in the destination image that
borderMode=#BORDER_TRANSPARENT, it means that the pixels in the destination image that
corresponds to the "outliers" in the source image are not modified by the function.
corresponds to the "outliers" in the source image are not modified by the function.
@param borderValue Value used in case of a constant border. By default, it is 0.
@param borderValue Value used in case of a constant border. By default, it is 0.
@note
@note
...
@@ -2525,11 +2550,11 @@ rotation-invariant template matching, for object tracking and so forth.
...
@@ -2525,11 +2550,11 @@ rotation-invariant template matching, for object tracking and so forth.
@param dst Destination image. It will have same size and type as src.
@param dst Destination image. It will have same size and type as src.
@param center The transformation center; where the output precision is maximal
@param center The transformation center; where the output precision is maximal
@param M Magnitude scale parameter. It determines the radius of the bounding circle to transform too.
@param M Magnitude scale parameter. It determines the radius of the bounding circle to transform too.
@param flags A combination of interpolation methods, see cv::InterpolationFlags
@param flags A combination of interpolation methods, see #InterpolationFlags
@note
@note
- The function can not operate in-place.
- The function can not operate in-place.
- To calculate magnitude and angle in degrees @ref cv::cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.
- To calculate magnitude and angle in degrees #cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.
@param dst Destination image. It will have same size and type as src.
@param dst Destination image. It will have same size and type as src.
@param center The transformation center;
@param center The transformation center;
@param maxRadius The radius of the bounding circle to transform. It determines the inverse magnitude scale parameter too.
@param maxRadius The radius of the bounding circle to transform. It determines the inverse magnitude scale parameter too.
@param flags A combination of interpolation methods, see cv::InterpolationFlags
@param flags A combination of interpolation methods, see #InterpolationFlags
@note
@note
- The function can not operate in-place.
- The function can not operate in-place.
- To calculate magnitude and angle in degrees @ref cv::cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.
- To calculate magnitude and angle in degrees #cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.