Skip to main content
Inspiring
September 16, 2013
Answered

Is there any bilateral filter library existing?

  • September 16, 2013
  • 1 reply
  • 1575 views

Hi,

I am looking for an edge-preserving convolution method written in AS3 but it's really hard to find one.

Bilaterial filter is one of the most popular edge-preserving convolution.

Have any of you seen a bilaterial filter library written in AS3?

If not, can you tell me a good opensource image-processing library such as OpenCV in flash, if there is any?

Thanks,

This topic has been closed for replies.
Correct answer sinious

I know this isn't entirely an answer on your question but a while back I did some decent speed edge detection using this library (AS3 (slow) version and a PixelBender (fast) version available, but old): http://blog.inspirit.ru/?p=297

I'm sure there's quite a bit more out there but it detected edges very well when I used it. With that you can simply make a mask. Then all you need to do duplicate the image, blur the bottom image and use your generated gradient mask to multiply the original image over the blurred image to show the original sharper edges.

If you find a library, please share it!

1 reply

sinious
siniousCorrect answer
Legend
September 16, 2013

I know this isn't entirely an answer on your question but a while back I did some decent speed edge detection using this library (AS3 (slow) version and a PixelBender (fast) version available, but old): http://blog.inspirit.ru/?p=297

I'm sure there's quite a bit more out there but it detected edges very well when I used it. With that you can simply make a mask. Then all you need to do duplicate the image, blur the bottom image and use your generated gradient mask to multiply the original image over the blurred image to show the original sharper edges.

If you find a library, please share it!

9tontruckAuthor
Inspiring
September 16, 2013

Thank you sinious. Your solution brought me to http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1789025# which is exactly what I am looking for.

Thanks a lot!

sinious
Legend
September 17, 2013

You're very welcome and good luck!