An open API service indexing awesome lists of open source software.

https://github.com/declancm/canny-edge-detector

A canny edge detector written in C++ without any external libraries.
https://github.com/declancm/canny-edge-detector

Last synced: 7 days ago
JSON representation

A canny edge detector written in C++ without any external libraries.

Awesome Lists containing this project

README

          

# canny-edge-detector

A canny edge detector written in C++ which only uses OpenCV for file reading/writing. The canny edge detection involved implementing the following without any external libraries: a gaussian blur, a Sobel filter as the edge detection operator, non-maximum suppression, and double thresholding.

## Example:

### Original Image

Original Image

### Image after Canny Edge Detection

Image after Canny Edge Detection