Three different image filters were implemented using OpenCV: Kuwahara filter, Gaussian filter, and Mean filter.
-
Updated
Jun 10, 2022 - Python
Three different image filters were implemented using OpenCV: Kuwahara filter, Gaussian filter, and Mean filter.
Developing an artistic abstraction of photo-realistic images using the Kuwahara filtering technique
The Kuwahara filter is a non-linear filter used for image smoothing while preserving edges. It divides the image into overlapping square regions and computes the mean and variance of pixel values within each region. Then, it selects the region with the smallest variance and replaces all pixels within that region with the mean value of those pixels.
Add a description, image, and links to the kuwahara-filter topic page so that developers can more easily learn about it.
To associate your repository with the kuwahara-filter topic, visit your repo's landing page and select "manage topics."