Scale the image to the specific size

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TDepth> Resize(
	int width,
	int height,
	INTER interpolationType
)
Public Function Resize ( _
	width As Integer, _
	height As Integer, _
	interpolationType As INTER _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Resize(
	int width, 
	int height, 
	INTER interpolationType
)

Parameters

width
Int32
The width of the returned image.
height
Int32
The height of the returned image.
interpolationType
INTER
The type of interpolation

Return Value

The resized image

See Also