Click or drag to resize

Cv2Resize Method

Resizes an image.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void Resize(
	InputArray src,
	OutputArray dst,
	Size dsize,
	double fx = 0,
	double fy = 0,
	InterpolationFlags interpolation = InterpolationFlags.Linear
)

Parameters

src
Type: OpenCvSharpInputArray
input image.
dst
Type: OpenCvSharpOutputArray
output image; it has the size dsize (when it is non-zero) or the size computed from src.size(), fx, and fy; the type of dst is the same as of src.
dsize
Type: OpenCvSharpSize
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; when it equals 0, it is computed as: (double)dsize.width/src.cols
fy (Optional)
Type: SystemDouble
scale factor along the vertical axis; when it equals 0, it is computed as: (double)dsize.height/src.rows
interpolation (Optional)
Type: OpenCvSharpInterpolationFlags
interpolation method
See Also