Click or drag to resize

Cv2PyrUp Method

Upsamples an image and then blurs it.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void PyrUp(
	InputArray src,
	OutputArray dst,
	Nullable<Size> dstSize = null,
	BorderTypes borderType = BorderTypes.Reflect101
)

Parameters

src
Type: OpenCvSharpInputArray
input image.
dst
Type: OpenCvSharpOutputArray
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: OpenCvSharpBorderTypes

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

See Also