Use inpaint to recover the intensity of the pixels which location defined by on this image

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TDepth> InPaint(
	Image<Gray, byte> mask,
	double radius
)
Public Function InPaint ( _
	mask As Image(Of Gray, Byte), _
	radius As Double _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ InPaint(
	Image<Gray, unsigned char>^ mask, 
	double radius
)

Parameters

mask
Image<(Of <(<'Gray, Byte>)>)>
The inpainting mask. Non-zero pixels indicate the area that needs to be inpainted
radius
Double
The radius of circular neighborhood of each point inpainted that is considered by the algorithm

Return Value

The inpainted image

See Also