You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling inpaint function from xphoto module with INPAINT_FSR_(BEST/FAST) parameter, there is an OpenCV exception if the provided src image is different than CV_8U.
This behavior is due to the call to : "src.convertTo(src, CV_8U, 1/257.0)" whereas src is a const reference argument.