Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 265 Bytes

README.md

File metadata and controls

6 lines (6 loc) · 265 Bytes

Canny-Edge-Detector

Implemented Canny edge detection in Python by applying:

  1. Gaussian smoothing operator for image smoothing
  2. Sobel operator to find the magnitude and direction of the edges
  3. Non-maximum suppression algorithm
  4. Double threshold algorithm.