Ubuntu – Hole-Filling Filter in OpenCV C++
I have a basic implementation of hole-filling filter as shown below: #include <iostream> #include <opencv2/opencv.hpp> int main(int argc, char** argv) { // please note that the depthImg is (720 x 576) 8UC1 // let's make a smaller one for testing…