Face Detection - Google ML - Android Studio - Compose

Detect Face using Google/Firebase ML Kit In this tutorial, we will detect the face(s) from an image. We will use to 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 tasks like embellishing selfies & portraits or generating avatar(s) from the user's photo. Since the ML Kit Face Detection API can perform Face Detection in real-time, you can use it in applications like video chat or games that respond to the player's expressions. We will use the Android Studio IDE and the Kotlin language with the Jetpack Compose. >> Check For Java >> Check For Kotlin >> Check For Compose Code: build.gra...