Cv2PyrUp Method OpenCvSharp Class Library
Upsamples an image and then blurs it.

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

public static void PyrUp(
	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*2, (src.rows*2)
borderType (Optional)
Type: OpenCvSharpBorderType

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

See Also

Reference