Scale the image to the specific size

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

Syntax

C#
[ObsoleteAttribute("Please use Resize(int width, int height, CvEnum.INTER interpolationType, bool preserverScale) instead. This function will be removed in the next version")]
public Image<TColor, TDepth> Resize(
	int width,
	int height,
	bool preserverScale
)
Visual Basic (Declaration)
<ObsoleteAttribute("Please use Resize(int width, int height, CvEnum.INTER interpolationType, bool preserverScale) instead. This function will be removed in the next version")> _
Public Function Resize ( _
	width As Integer, _
	height As Integer, _
	preserverScale As Boolean _
) As Image(Of TColor, TDepth)
Visual C++
[ObsoleteAttribute(L"Please use Resize(int width, int height, CvEnum.INTER interpolationType, bool preserverScale) instead. This function will be removed in the next version")]
public:
Image<TColor, TDepth>^ Resize(
	int width, 
	int height, 
	bool preserverScale
)

Parameters

width
Type: System..::.Int32
The width of the returned image.
height
Type: System..::.Int32
The height of the returned image.
preserverScale
Type: System..::.Boolean
if true, the scale is preservered and the resulting image has maximum width(height) possible that is <= width (height), if false, this function is equaivalent to Resize(int width, int height)

Return Value

[Missing <returns> documentation for "M:Emgu.CV.Image`2.Resize(System.Int32,System.Int32,System.Boolean)"]

See Also