Resizes image src so that it fits exactly to dst. If ROI is set, the function consideres the ROI as supported as usual

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvResize(
	IntPtr src,
	IntPtr dst,
	INTER interpolation
)
Public Shared Sub cvResize ( _
	src As IntPtr, _
	dst As IntPtr, _
	interpolation As INTER _
)
public:
static void cvResize(
	IntPtr src, 
	IntPtr dst, 
	INTER interpolation
)

Parameters

src
IntPtr
Source image.
dst
IntPtr
Destination image
interpolation
INTER
Interpolation method

See Also