cvInpaint has a bug?
Hi!
I'm using OpenCV2.4.6, cvInpaint() in a C++ program on a Windows7 64bit machine. When I execute, cvInpaint(in.yuv, mask, out.yuv, 5, CV_INPAINT_NS); if the mask pattern is sticking to the left edge of image, such as mask(0, y)=255, that mask area is not inpainted. This happens here and there, but not always.
How can I complete the inpainting at the left edge of images?
Best regards, Taka Senoh [email protected]
You could start by skipping the old C-API and moving to the C++ corresponding function especially since you are using OpenCV 2.4.6 ...
Thanks! I will try the C++ version of inpaint().