Please enable JavaScript.
Coggle requires JavaScript to display documents.
Edge Detection - Coggle Diagram
Edge Detection
Methods
-
Sobel
- Differentiating : gives edge response
-
-
Canny
-
-
- Convolve image with gaussian filter to smooth and remove noise
- Find magnitude and orientation of gradient
- Perform non maximum suppression
-
after gradient calculation, edge is blurring
suppress all gradient values to 0 , except for local maxima
-
compare edge strength of current pixel with edge strength of pixel in pos and neg gradient direction
-
-
-
-
-
-
-
-