Image Processing Libraries for Android

I am currently developing an image processing application for Android mobile phones, and I would like to know which libraries you would recommend to me based on your experience.
I heard about JJIL , but I don’t know how good it is for what I want to achieve.
I need something that implements the basic image processing functions from the Matlab toolkit, and I would also like to know if there are any alternatives to JJIL.
Also, I heard that you can use the Matlab compiler to generate C code that could be used in a standalone application, but has anyone ever done this before, for Java, adapting it to work in the Android environment? Thanks in advance.

+3
source share
1 answer

At least from the google code description, JJIL seems to be exactly what you want. Are there specific things you want to do that JJIL does not support?

You can compile Matlab code. See mex in the Matlab documentation. I used Java code in Matlab, but not vice versa.

+2
source

Source: https://habr.com/ru/post/1766831/


All Articles