Laplacian:
Edge Detection is the emphasizing of pixels that differ by a large amount from
surrounding pixels. This process gives us an outline of the image where
we can see where the "edges" of an image are. The Laplacian filter
accomplishes this by summing the four surrounding pixel values, then
subtracting four times the pixels values. If this result is greater than
a set value, then we color the pixel white, otherwise we color it black.
0 1 0
1 -4 1
0 1 0