stenfeio
stenfeio

Reputation: 349

Running a libraby for fuzzy logic classification (jfuzzylogic) on Android?

I have implemented code that classifies hand gestures into the correct corresponding letters and words as a Java application.

What am trying to do now is to implement my classification algorithm on android so that i am able to classify these gestures by processing the input data on my Android device.

Can i use "jfuzzylogic" in Android, and if not is there a alternative to this library that could run in Android?

Upvotes: 0

Views: 813

Answers (2)

Juan Rada-Vilela
Juan Rada-Vilela

Reputation: 195

Use jfuzzylite instead. It is free and open source. It does not require third-party libraries, contains more features than jfuzzylogic (except for parameter optimization), and the binary size is less than 300KB. Visit www.fuzzylite.com.

Upvotes: 0

Yusuf X
Yusuf X

Reputation: 14633

Yes, you can use jfuzzylogic in Android, as it is standard Java.

Upvotes: 0

Related Questions