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.0.1.0 (2.0.1.0)

Syntax

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

Parameters

src
Type: System..::.IntPtr
Source image.
dst
Type: System..::.IntPtr
Destination image
interpolation
Type: Emgu.CV.CvEnum..::.INTER
Interpolation method

See Also