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开发者_如何学Python process (800*600 resolution)
is there a fast open source median filtering algorithm which is implemented in C#?
thanks..
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
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.
精彩评论