On-Device Face Detection on Android using Google’s ML Kit

By Medium - 2020-12-03

Description

Detecting faces in an image with the power of mobile machine learning

Summary

  • Detecting faces in an image with the power of mobile machine learning Creating accurate machine learning models capable of identifying multiple faces (or other target objects) in a single image remains a core challenge in computer vision, but now with the advancement of deep learning and computer vision models for mobile, you can much more easily detect faces in an image.
  • Now let’s jump into some code to see how these above steps look in practice: Draw a Canvas on Detected Faces: In the onDraw method, we need to first create a Paint object and then iterate the list of the Face object.

 

Topics

  1. NLP (0.18)
  2. Machine_Learning (0.17)
  3. Security (0.1)

Similar Articles

Targeted adversarial attacks with Keras and TensorFlow

By PyImageSearch - 2020-10-26

In this tutorial, you will learn how to perform targeted adversarial attacks and construct targeted adversarial images using Keras, TensorFlow, and Deep Learning. Last week’s tutorial covered untarget ...

8 Image Processing Python Packages That You Must Try

By Medium - 2021-03-23

Python is one of the most used programming languages in the world. It is capable of doing many things with less effort and fewer lines of code. It can also be used to edit and recreate images very…