CvInpaint Method OpenCvSharp Class Library
Inpaints the selected region in the image.

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

public static void Inpaint(
	CvArr src,
	CvArr mask,
	CvArr dst,
	double inpaintRange,
	InpaintMethod flags
)

Parameters

src
Type: OpenCvSharpCvArr
The input 8-bit 1-channel or 3-channel image.
mask
Type: OpenCvSharpCvArr
The inpainting mask, 8-bit 1-channel image. Non-zero pixels indicate the area that needs to be inpainted.
dst
Type: OpenCvSharpCvArr
The output image of the same format and the same size as input.
inpaintRange
Type: SystemDouble
The radius of circlular neighborhood of each point inpainted that is considered by the algorithm.
flags
Type: OpenCvSharpInpaintMethod
The inpainting method.
See Also

Reference