图像修复是重建图像和视频受损部分的过程。这个过程也称为图像或视频的插值。
在EmguCV中,不仅可以修复划痕,还可以去除文本或对象,修复图像可以用 Inpaint函数。参数和用法如下
public static void Inpaint(
IInputArray src,
IInputArray mask,
IOutputArray dst,
double inpaintRadius,
InpaintType flags
)
Parameters
src
Type: Emgu.CV.IInputArray
The input 8-bit 1-channel or 3-channel image(原图像)
mask
Type: Emgu.CV.IInputArray
The inpainting mask, 8-bit 1-channel image. Non-zero pixels indicate the area that needs to be inpainted(修复掩码)
dst
Type: Emgu.CV.IOutputArray
The output image of the same format and the same size as input(修复后的图像)
inpaintRadius
Type: System.Double
The radius of circular neighborhood of each point inpainted that is considered by the algorithm(算法所考虑的每个画点的圆形邻域半径)
flags
Type: Emgu.CV.CvEnum.InpaintType
The inpainting method(EmguCV中有两种修复方法)
新建一个控制台程序来实现图片修复,代码如下
static void Main(string[] args)
{
try
{
//读取源文件
Mat srcImg = CvInvoke.Imread("bb.JPG");
CvInvoke.Imshow("src", srcImg);
//创建掩码
Mat mask = new Mat();
//Mat mask = CvInvoke.Imread("crad.png");
CvInvoke.CvtColor(srcImg, mask, ColorConversion.Rgb2Gray);
CvInvoke.Threshold(mask, mask, 235, 255, ThresholdType.Binary);
CvInvoke.Imshow("mask", mask);
Mat dst = new Mat();
CvInvoke.Inpaint(srcImg, mask, dst, 10, InpaintType.Telea);
CvInvoke.Imshow("dst", dst);
CvInvoke.WaitKey(0);
}
catch (Exception e)
{
Console.Write(e);
Console.ReadKey();
}
}
运行效果
可以看到,左边的图像的中部被我用橡皮擦擦去了一部分。右边的图片是经过复原的效果。修复的很不错,可原图一模一样了。