ImageTColor, TDepthResize Method (Double, Inter) |
http://www.emgu.com
Scale the image to the specific size: width *= scale; height *= scale
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> Resize(
double scale,
Inter interpolationType
)
Public Function Resize (
scale As Double,
interpolationType As Inter
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Resize(
double scale,
Inter interpolationType
)
member Resize :
scale : float *
interpolationType : Inter -> Image<'TColor, 'TDepth>
Parameters
- scale
- Type: SystemDouble
The scale to resize - interpolationType
- Type: Emgu.CV.CvEnumInter
The type of interpolation
Return Value
Type:
ImageTColor,
TDepthThe scaled image
See Also