Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 916 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 916 Bytes

adaptive-median

Adaptive-median image filter

This is just a python implementation of an adaptive median image filter, which is essentially a despeckling filter for grayscale images. The other piece (which you can disable by commenting out the import line for medians_1D) is a set of example C median filters and swig wrappers (see the medians-1D repo for that part). This part is not fully working yet in terms of passing python arrays to C (contributions welcome).

Steve Arnold <stephen.arnold42 at gmail.com>

Changes - Author (Qasim Wani)

Implements Adaptive Median Filter by preserving image and incrementing S_xy (kernel size) as mentioned in the algorithm for AMF.

See Details below for more information