Android Image Filter Libraries

Are there image libraries for Android, as shown in http://www.jhlabs.com/ip/filters/index.html ? Or did someone port the same thing? Thanks in advance.

+6
android filter image-processing graphics image-manipulation
source share
4 answers

I have not tried the code yet. but I am running an example application. I think it’s good to use,

https://github.com/finebyte/android-jhlabs

+8
source share

I know this is an old topic, but in the absence of AWT libraries, I started moving some image filters from the Marvin Image frame ( found here )

I installed it as a googlecode project here , so feel free to check it out.

+6
source share

Samsung S Pen SDK Has image filters. Filters are implemented for ARM devices. Here's the link: S Pen SDK . Great for any Android device with or without an S Pen.

+2
source share

I do not believe that there is a very complex set of them, but the graphic class contains a number of methods useful for some types of these operations.

For example, using a color matrix, you can convolution on the image. Depending on what you want to do, you may have what you need.

+1
source share

All Articles