Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible for Encog or Neuroph to run on Android?

I am writing an Android app that will be performing image recognition and analysis. I have heard that a neural network is one of the better ways to perform image recognition and have attempted to port the library that Mike O'Neill on CodeProject used in his outstanding handwritten digit recognition application for Win32. However, I recently was told about Encog and Neuroph, two outstanding Java libraries for neural networks/image recognition. I only need the neural network to work, I will be writing my own image recognition suite around another neural network library. Does anyone know if Encog or Neuroph can run on Android, preferably Encog?

EDIT: I already Googled this, I'm wondering if anyone can actually attest to the library working.

like image 844
Nathan Moos Avatar asked Jan 02 '12 02:01

Nathan Moos


1 Answers

I can confirm that Encog 3.1.0 works on android 4.1.2. For neural networks, I do training on my development machine then dump the net to disk and copy it to the android/project/asset directory.

see org.encog.persist.EncogDirectoryPersistence for serialization.

like image 66
drhodes Avatar answered Oct 23 '22 05:10

drhodes