Week 4 Flashcards
what are three types of gradient operators for edge detection
And why is edge detection good?
sobel
prewit
roberts
edge detection will enhance the edges giving a more appealing look
what information does the gradient of a pixel tell us
provides info to the strength of the edge
direction of gradient will always be perpendicular to the direction of edge
what edges does roberts detects
diagonal edges
1 0 0 -1
0 -1 1 0
what edges does prewit date
horizontal and vertical
-1 -1 -1 -1 0 1
0 0 0 -1 0 1
1 1 1 -1 0 1
what does sobel detect
horizontal and vertical but with enhancement on the middle
- 1 0 1
- 2 0 2
- 1 0 1
what does a laplacian detector find
is an isotropic filter, can detect filter in both x and y axis
0 1 0
1 -4 1
0 1 0