For any given image we can detect edges using Canny edge detector, detect lines, circles, ellipsed located in the image (if any). also, we implemented the the Active Contour Model (snake) using the greedy algorithm.
- Visual Studio C++ Workload
- OpenCV
- CMake
- Configure project.
N.b use only after cloning or changing CMakeLists.txt.
$ cmake . -B ./build
- Build the executable
$ cmake --build ./build/
- The executable will be in the build/Debug/ folder
$ build/Debug/edge-boundary-detection.exe
- Clean the build folder (Optional)
$ cmake --build ./build/ --target clean