ImageTColor, TDepthInPaint Method |
http://www.emgu.com Use inpaint to recover the intensity of the pixels which location defined by mask on this image
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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
)
member InPaint :
mask : Image<Gray, byte> *
radius : float -> Image<'TColor, 'TDepth>
Parameters
- mask
- Type: Emgu.CVImageGray, Byte
The inpainting mask. Non-zero pixels indicate the area that needs to be inpainted - radius
- Type: SystemDouble
The radius of circular neighborhood of each point inpainted that is considered by the algorithm
Return Value
Type:
ImageTColor,
TDepth The inpainted image
See Also