Question

I m doing a project based on image processing and i needed to do median filtering for that. I did it with unsafe way it took a long time to process (800*600 resolution)

is there a fast open source median filtering algorithm which is implemented in C#?

thanks..

Was it helpful?

Solution

Try ,AforgeNET where they mention the median filter. They do have a collection of fast algorithms and since you are doing C#, it would be just a few clicks and you should be able to use this library which is vastly popular among image processing developers.

You can also check EMGUCV Which is a C# wrapper for OpenCV

OTHER TIPS

Try this [link] implementation - it's fully safe, but quite fast.

Update:

The author of this article (JaCraig) recommends to use the latest version of his library [link] (More details in the comments).

By the way, he wrote quite interesting utility library and the filter part of it: Craig's Utility Library.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top