Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1.02 KB

README.md

File metadata and controls

19 lines (13 loc) · 1.02 KB

Image-Filtering-Using-OpenCV

Three different image filters were implemented using OpenCV: Kuwahara filter, Gaussian filter, and Mean filter.

# three filters available: gaussian, kuwahara and mean
# size is the filter dimension
python main.py --image=image.jpg --filter=gaussian --size=7 --sigma=2
Original Image
sculpture
Kuwahara Filter (Size=7) Mean Filter (Size=7) Gaussian Filter (Sigma=7)
sculpture_kuwahara_9 sculture_mean_7 sculpture_gaussian_7