Scale the image to the specific size: width *= scale; height *= scale

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

Syntax

C#
public Image<TColor, TDepth> Resize(
	double scale,
	INTER interpolationType
)
Visual Basic (Declaration)
Public Function Resize ( _
	scale As Double, _
	interpolationType As INTER _
) As Image(Of TColor, TDepth)
Visual C++
public:
Image<TColor, TDepth>^ Resize(
	double scale, 
	INTER interpolationType
)

Parameters

scale
Type: System..::.Double
The scale to resize
interpolationType
Type: Emgu.CV.CvEnum..::.INTER
The type of interpolation

Return Value

The scaled image

See Also