-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImage_Filtering
More file actions
23 lines (17 loc) · 1001 Bytes
/
Image_Filtering
File metadata and controls
23 lines (17 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Median filtering:
Median filtering is good at eliminating salt and pepper noise
It turns out that it does a pretty good job of preserving edges in an image.
The pixels on the edge of an object in an image end up as values that are already present in that section of the image.
Median filter leaves image nice, crisp.
Gaussian filtering:
Gaussian blurring takes the average of the values around a pixel, after scanning through all pixels in the image,
each one ends up as a blend of all the colors around it, and it will end up doing exactly what it’s name says: blur
Gaussian filter leaves image fuzzy.
Image Sharpening:
https://northstar-www.dartmouth.edu/doc/idl/html_6.2/Sharpening_an_Image.html
http://setosa.io/ev/image-kernels/
https://taylorpetrick.com/blog/post/convolution-part3
http://www.degeneratestate.org/posts/2016/Oct/23/image-processing-with-numpy/
Best Compression Tool:
https://compressnow.com/
https://www.pyimagesearch.com/2016/07/25/convolutions-with-opencv-and-python/