DexiNed is a Convolutional Neural Network (CNN) architecture for edge detection.
Install latest OpenCV >=5.0.0 and CMake >= 3.22.2 to get started with.
1# detect on camera input
2python demo.py
3# detect on an image
4python demo.py --input /path/to/image
5
6# get help regarding various parameters
7python demo.py --help
1# A typical and default installation path of OpenCV is /usr/local
2cmake -B build -D OPENCV_INSTALLATION_PATH=/path/to/opencv/installation .
3cmake --build build
4
5# detect on camera input
6./build/demo
7# detect on an image
8./build/demo --input=/path/to/image
9# get help messages
10./build/demo -h
All files in this directory are licensed under
MIT License.