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.
- Host: GitHub
- URL: https://github.com/geekquad/canny-edge-detection
- Owner: geekquad
- Created: 2020-06-16T07:33:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T18:20:31.000Z (about 6 years ago)
- Last Synced: 2025-01-07T05:16:52.683Z (over 1 year ago)
- Topics: canny-edge-detection, edge-detection, image-processing, opencv, python, real-time
- Language: Jupyter Notebook
- Size: 602 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: