ImageTColor, TDepthResize Method (Int32, Int32, Inter) |
http://www.emgu.com
Scale the image to the specific size
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic 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
)
member Resize :
width : int *
height : int *
interpolationType : Inter -> Image<'TColor, 'TDepth>
Parameters
- width
- Type: SystemInt32
The width of the returned image. - height
- Type: SystemInt32
The height of the returned image. - interpolationType
- Type: Emgu.CV.CvEnumInter
The type of interpolation
Return Value
Type:
ImageTColor,
TDepthThe resized image
See Also