Posts

Showing posts from July, 2022

Face Detection | Google ML | Android Studio | Java

Image
Detect Face using Google/Firebase ML Kit In this tutorial, we will detect the face(s) from an image. We will use get the Bitmap from an image in the drawable folder but we will also show how you may also get the Bitmap from Uri, ImageView, etc.  Using the ML Kit Face Detection API you can easily identify the key facial features & get the contours of detected faces. Note that the API only detects the faces, it doesn’t recognize the people. With the ML Kit Face Detection API, you can easily get the information you need to perform the tasks like embellishing selfies & portraits or generating avatar(s) from the user's photo. Since the ML Kit Face Detection API can perform the Face Detection in real-time, so you can use it in applications like video chat or games that respond to the player's expressions. >>Check For Kotlin Video Tutorial Coding build.gradle dependencies { implementation 'androidx.appcompat:appcompat:1.4.2' implementation 'com.goo

Face Detection | Google ML | Android Studio | Kotlin

Image
Detect Face using Google/Firebase ML Kit In this tutorial, we will detect the face(s) from an image. We will use get the Bitmap from an image in the drawable folder but we will also show how you may also get the Bitmap from Uri, ImageView, etc.  Using the ML Kit Face Detection API you can easily identify the key facial features & get the contours of detected faces. Note that the API only detects the faces, it doesn’t recognize the people. With the ML Kit Face Detection API, you can easily get the information you need to perform the tasks like embellishing selfies & portraits or generating avatar(s) from the user's photo. Since the ML Kit Face Detection API can perform the Face Detection in real-time, so you can use it in applications like video chat or games that respond to the player's expressions. >>Check For Java Video Tutorial Coding build.gradle dependencies { implementation 'androidx.core:core-ktx:1.7.0' implementation 'androidx.appcom