internet engineering hw1_2
Resolving noisy image with median-filter
Use the package manager pip to install opencv-python.
pip install opencv-python
The median filter is a non-linear digital filtering technique, often used to remove noise from an image or signal. Such noise reduction is a typical pre-processing step to improve the results of later processing (for example, edge detection on an image). It uses neighbour pixles of its sides and choose the median of each selected matrix.So if there's any noise exists (corrupt pixles) , with this filter it changes the corrupted pixle , so after doing this to all image matrix , hopefully there will be better image comparing the input image!
To recover those image with low resolution and opaue quality specialy those that has taken long ago , to see history with today's quality. Also there are several algorithms that exist and are way so much better but this was simple sample for homework!