Morphological operations using OpenCV
This tutorial will discuss examples of B/W morphological operations using OpenCV. The code used for this tutorial can be downloaded from here . When you unzip the file from above, you will see the following directory and file structure: bin CMakeLists.txt sample_inputs sample_results src Change to the bin/ folder and compile the code using the commands "cmake ../" and "make". You should see a result as below: acv@acv-vm:~/vision/practice2/bin$ cmake .. -- The C compiler identification is GNU 7.5.0 -- The CXX compiler identification is GNU 7.5.0 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI i...