Cv2PyrDown Method OpenCvSharp Class Library
Blurs an image and downsamples it.

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static void PyrDown(
	InputArray src,
	OutputArray dst,
	Nullable<Size> dstSize = null,
	BorderType borderType = BorderType.Reflect101
)

Parameters

src
Type: OpenCvSharp.CPlusPlusInputArray
input image.
dst
Type: OpenCvSharp.CPlusPlusOutputArray
output image; it has the specified size and the same type as src.
dstSize (Optional)
Type: SystemNullableSize
size of the output image; by default, it is computed as Size((src.cols+1)/2
borderType (Optional)
Type: OpenCvSharpBorderType

[Missing <param name="borderType"/> documentation for "M:OpenCvSharp.CPlusPlus.Cv2.PyrDown(OpenCvSharp.CPlusPlus.InputArray,OpenCvSharp.CPlusPlus.OutputArray,System.Nullable{OpenCvSharp.CPlusPlus.Size},OpenCvSharp.BorderType)"]

See Also

Reference