/// <summary>
 /// Inpaints the selected region in the image
 /// TODO: Remove 'dst' argument and return a CVImage object
 /// </summary>
 public void Inpaint(CVArr inpaint_mask, CVArr dst, double inpaintRange, int flags)
 {
     PInvoke.cvInpaint(new __CvArrPtr(this), new __CvArrPtr(inpaint_mask), new __CvArrPtr(dst), inpaintRange, flags);
 }