I am developing an android application in which I am trying to replicate the mapir plugin of fiji. I have searched on internet and I came to know that ImageJ2 can be useful for this. How to use it in my android project? And is ImageJ2 and ImageLib2 different? Help is being deeply appreciated. Thank You.
Asked
Active
Viewed 2,363 times
1 Answers
2
ImageJ2 and its foundational layers ImgLib2 and SciJava are designed in a way to avoid any dependencies on AWT or Swing, so they should be compatible with Android. This is being discussed on the ImageJ forum.
Citing @ctrueden from there:
Unfortunately, no one is (yet) using ImgLib2 or ImageJ2 on Android in anger. So if you try it, expect numerous obstacles.

Jan Eglinger
- 3,995
- 1
- 25
- 51
-
Does ImageJ2 provides same functionality as it have in its previous version? Basically my task is I need to convert this code:[link]https://github.com/mapircamera/Fiji/blob/master/plugins/Calibration/Calibrator.java into android. So, If it is providing same functionality then, should it be a easy task? – Jay Feb 03 '17 at 05:34
-
1@JayTanna it won't be straight-forward though. You'll have to replace `ij.ImagePlus` by `net.imagej.ImgPlus` and get rid of all other `ij.*` dependencies in favor of their `net.imagej.*` counterparts. As mentioned, ask on the [ImageJ forum](http://forum.imagej.net/) for more help on this. – Jan Eglinger Feb 06 '17 at 16:56
-
[link] http://stackoverflow.com/questions/42083570/applying-color-gradient-on-an-image-in-android – Jay Feb 07 '17 at 08:39
-
can you help me with this question? link is in above comment – Jay Feb 07 '17 at 08:39