Use impaint 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.0.1.0 (2.0.1.0)

Syntax

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

Parameters

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

Return Value

The inpainted image

See Also