Click or drag to resize

CvInvokeResize Method

http://www.emgu.com
Resizes the image src down to or up to the specified size

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Resize(
	IInputArray src,
	IOutputArray dst,
	Size dsize,
	double fx = 0,
	double fy = 0,
	Inter interpolation = Inter.Linear
)

Parameters

src
Type: Emgu.CVIInputArray
Source image.
dst
Type: Emgu.CVIOutputArray
Destination image
dsize
Type: System.DrawingSize
Output image size; if it equals zero, it is computed as: dsize=Size(round(fx*src.cols), round(fy * src.rows)). Either dsize or both fx and fy must be non-zero.
fx (Optional)
Type: SystemDouble
Scale factor along the horizontal axis
fy (Optional)
Type: SystemDouble
Scale factor along the vertical axis;
interpolation (Optional)
Type: Emgu.CV.CvEnumInter
Interpolation method
See Also