Search code examples
c#image-processingmedian

Unsafe Median filter using C#


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..


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