Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 171 additions & 0 deletions EdgeDetection/PrewittEdgeDetection.ipynb

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion EdgeDetection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,10 @@ Implementation of the following Edge Detection methods:
* Canny Edge Detection
* Robert Edge Detection
* Prewitt Edge Detection
* Sobel Edge Detection
Prewitt operator is used for Prewitt edge detection in an image. It detects two types of edges: Horizontal and
Vertical. Edges are calculated by using difference between corresponding pixel intensities of an image.
All the masks that are used for edge detection are also known as derivative masks. Because as we have stated
many times before in this series of tutorials that image is also a signal so changes in a signal can only be
calculated using differentiation. So that’s why these operators are also called as derivative operators or
derivative masks.
* Sobel Edge Detection