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

https://github.com/geekquad/canny-edge-detection

A basic program that performs edge detection of images in real-time.
https://github.com/geekquad/canny-edge-detection

canny-edge-detection edge-detection image-processing opencv python real-time

Last synced: 2 months ago
JSON representation

A basic program that performs edge detection of images in real-time.

Awesome Lists containing this project

README

          

# Canny-Edge-Detection
The Canny edge detector is an edge detection operator that uses a multi-stage algorithm to detect a wide range of edges in images. It accepts a gray scale image as input and it uses a multistage algorithm.

Canny -Edge Detection mainly runs in 5 sequential steps:



  • Smoothing

  • Finding Gradients

  • Non-maximum suppression

  • Hystersis Thresholding


Result: