Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Image Processing Library(Alternative for openCV) [closed]

I am looking for an image processing library which can be used as an alternative for OpenCV The tasks i would like to perform are 1)Convert image into a text form which can be manipulated as can be done with Mat in OpenCV and vice versa 2)Image Compression algorithms which can help me compress images

like image 397
Usama Moin Avatar asked May 17 '26 02:05

Usama Moin


1 Answers

You can use this library

  1. OpenFrameworks for Android
  2. OpenIMAJ
  3. Google Android Vision API

I would recommend OpenFrameworks, install open frameworks for android studio http://openframeworks.cc/setup/android-studio/ and openframeworks android examples https://github.com/openframeworks/openFrameworks/tree/master/examples/android

or you can use Microsoft Cognitive services, new alternative for computer vision, ocr, ai etc.

https://www.microsoft.com/cognitive-services/en-us/computer-vision-api , android examples https://github.com/Microsoft/ProjectOxford-ClientSDK/tree/master/Vision/Android

Android vision api examples https://github.com/googlesamples/android-vision

like image 94
mesutpiskin Avatar answered May 19 '26 15:05

mesutpiskin