[This is preliminary documentation and is subject to change.]

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

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

Syntax

         
 C#  Visual Basic  Visual C++ 
[ObsoleteAttribute("Please use Resize(double scale, CvEnum.INTER interpolationType) instead. This function will be removed in the next version")]
public Image<TColor, TDepth> Resize(
	double scale
)
<ObsoleteAttribute("Please use Resize(double scale, CvEnum.INTER interpolationType) instead. This function will be removed in the next version")> _
Public Function Resize ( _
	scale As Double _
) As Image(Of TColor, TDepth)
[ObsoleteAttribute(L"Please use Resize(double scale, CvEnum.INTER interpolationType) instead. This function will be removed in the next version")]
public:
Image<TColor, TDepth>^ Resize(
	double scale
)

Parameters

scale
Double

[Missing <param name="scale"/> documentation for "M:Emgu.CV.Image`2.Resize(System.Double)"]

Return Value

The scaled image

See Also