Questions tagged [google-mlkit]

ML Kit is Google’s machine learning SDK for mobile platforms, iOS and Android, used for dynamic text recognition and translation, object detection, barcode scanning etc. When asking questions, use platform-specific tags, iOS or Android.

ML Kit is Google’s machine learning SDK for mobile platforms, iOS and Android, used for dynamic text recognition and translation, object detection, barcode scanning etc.

Tag Usage

The tag is to be used with or tags. When adding additional tags to questions, please use the iOS- or Android-specific tags.

Reference

600 questions
1
vote
1 answer

Why is Google's ML Face Detection Kit crashing on .process()

I am creating a face detector app which will detect faces in real time and identify landmarks on faces. The landmarks for the faces are working perfectly fine, however my real time face detection isn't working at all. I followed the instructions in…
CodingChap
  • 1,088
  • 2
  • 10
  • 23
1
vote
2 answers

Drawing a Box Around Face To Existed Photos with Google Face Detection ML Kit

We implemented Android ML Kit for face detection in Android. It works like charm, detect faces. The problem: We want to draw rectangles around detected faces when multiple faces detected What we have done: Implemented implementation…
1
vote
0 answers

google mlkit faceDetector in startImageStream broken - Flutter

I new in flutter and I want to count the frequency of blinks in the user's eyes. I use startImageStream to get the image and mlkit. this is my code: await cameraController.startImageStream((CameraImage img) => _proccessImageToBlinking(img)); …
hodyah
  • 11
  • 2
1
vote
1 answer

Android google MlKit issue

I am using Android Google MlKit for pose estimation. But I am getting the following error message: W/System.err: java.lang.IllegalStateException: MlKitContext has not been initialized W/System.err: at…
Tony
  • 21
  • 5
1
vote
1 answer

Which is the difference between the two GooglePlayServices of the nuget pacakges?

I wanted to use the QR scanner of the MLKit of Google, and in the nuget manager I have found two packagese. The two packager are: Xamarin.Google.MLKit.BarcodeScanning v116.1.0 which description is: Xamarin.Android Bindings for Google Play Services -…
Álvaro García
  • 18,114
  • 30
  • 102
  • 193
1
vote
0 answers

How can i crop face outline using flutter firebase_ml_vision? any other way to achieve this? Thank you

I am trying to make a flutter application that crops face from an image. I am using the firebase_ml_vision package to do this. Is there any method that by which I can crop only the face outline (not bounding box)? Thank you, sorry if the question…
1
vote
1 answer

How to train a custom entity extraction model with Google MLkit?

I want to train a custom entity extraction model with google mlkit, and use it across android and ios platform. How can I do that?
kathir raja
  • 640
  • 8
  • 19
1
vote
1 answer

How could I use the libraries of Google ML Kit in a xamarin.android application?

I am trying to do a xamarin.android application to use ML Kit, and I am folloing this steps: 1.- I create my android application in visual studio, using the template for that. 2.- In the nuget manager, I add the…
Álvaro García
  • 18,114
  • 30
  • 102
  • 193
1
vote
1 answer

Flutter - Specs satisfying the `GoogleMLKit/TextRecognition` dependency were found, but they required a higher minimum deployment target

I have a flutter app I added pod 'GoogleMLKit/TextRecognition' to my pod file, and did pod install I get the error Specs satisfying the GoogleMLKit/TextRecognition dependency were found, but they required a higher minimum deployment target. I would…
Elia Weiss
  • 8,324
  • 13
  • 70
  • 110
1
vote
1 answer

Recognize text in images with ML Kit on Android on device offline

Google at: Recognize text on device says: Optional but recommended: You can configure your app to automatically download the ML model to the device after your app is installed from the Play Store. To do so, add the following declaration to your…
Meir
  • 994
  • 12
  • 25
1
vote
1 answer

Can we able to find face rotation (on left/right side) using ARCore Augmeted faces in Android?

I am using ARCore Augmented faces to create Try-out-Jewellery App in Android. I have created App which supports 3 different nose rings and 1 Mang Tikka (Head Jewellery). You can find reference video of our Try-out-Jewellery App on youtube. ARCore…
1
vote
1 answer

Is it possible to run ML Kit in Robolectric unit tests?

I'm curious whether it's possible to run Google ML Kit in Robolectric unit tests. If I try, I get the following error: java.lang.IllegalStateException: MlKitContext has not been initialized The same test runs perfectly if I run it as an…
gabhor
  • 669
  • 9
  • 23
1
vote
0 answers

Does mirroring the (front) camera affect MLKit with CameraX?

You might consider this question a sequel to this other one I've recently asked. I have a custom device with a front camera that is mirrored by default and I would like it to always behave like it was flipped horizontally. Note that the end goal of…
rdxdkr
  • 839
  • 1
  • 12
  • 22
1
vote
0 answers

ML Kit Vision API text recognition - How to check thin model has been downloaded

I had an old device with Google play services not up-to-date and the phone wasn't able to download the Thin model for text recognition required by ML Kit. I was able to fix this issue by manually update google play services with the play store. I…
lukaspp
  • 1,059
  • 10
  • 15
1
vote
1 answer

Android: combining the same library's different versions where one is old and one is migrated in a project

For my image processing project on android, I need to use the two libraries: android_face_detection EPassportNFCReader I want to combine these to libraries in a project to make a library and use them in my real project. There is an inconsistency…