|
|
|
@ -209,6 +209,10 @@ CVAPI(void) cvCvtColor( const CvArr* src, CvArr* dst, int code ); |
|
|
|
|
CVAPI(void) cvResize( const CvArr* src, CvArr* dst, |
|
|
|
|
int interpolation CV_DEFAULT( CV_INTER_LINEAR )); |
|
|
|
|
|
|
|
|
|
#ifdef _MSC_VER |
|
|
|
|
#pragma warning( push ) |
|
|
|
|
#pragma warning( disable: 5054 ) |
|
|
|
|
#endif |
|
|
|
|
/** @brief Warps image with affine transform
|
|
|
|
|
@note ::cvGetQuadrangleSubPix is similar to ::cvWarpAffine, but the outliers are extrapolated using |
|
|
|
|
replication border mode. |
|
|
|
@ -273,6 +277,10 @@ CVAPI(void) cvLinearPolar( const CvArr* src, CvArr* dst, |
|
|
|
|
CvPoint2D32f center, double maxRadius, |
|
|
|
|
int flags CV_DEFAULT(CV_INTER_LINEAR+CV_WARP_FILL_OUTLIERS)); |
|
|
|
|
|
|
|
|
|
#ifdef _MSC_VER |
|
|
|
|
#pragma warning( pop ) |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
/** @brief Returns a structuring element of the specified size and shape for morphological operations.
|
|
|
|
|
|
|
|
|
|
@note the created structuring element IplConvKernel\* element must be released in the end using |
|
|
|
|