In this video we will see how to implement image classification/ labelling method in your Android App. It uses com.google.mlkit:image-labeling dependency for the same. The details of this library is also shared in the below google developer page: https://developers.google.com/codelabs/tflite-computer-vision-mobile#0 In this tutorial it uses 2 images – flower and finger…
Tag: Graphics
How to create a GIF from JPEG images in your Android App?-Android Studio complete code
This video shows the steps to create gif (Graphics Interchange Format) file from a set of JPEG images. It creates animation from the set of JPEG file. It uses the AnimatedGIFWriter Java code publicly available in the github post – https://github.com/dragon66/android-gif-animated-writer/blob/1b0cd020fa2e5bdb571c7c72f9352aee3843e181/src/com/github/dragon66/AnimatedGIFWriter.java It reads the jpeg image files from the download…
How to display gif (animated/ moving images) in layout of your Android app?
In this video it shows the steps to implement the animated gif images in your Android App. GIF, Graphics Interchange Format, are short animated images. In this tutorial it uses ‘pl.droidsonroids.gif:android-gif-drawable:1.2.25’ dependency in gradle file. Maven repository for this dependency can be referred at: https://search.maven.org/artifact/pl.droidsonroids.gif/android-gif-drawable/1.2.25/aar I hope you like this…