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

How to solve Errors in ML Kit Text Recognition library in Android?

I am trying to use android ML Kit text recognition library for the text recognition but on running I am getting error and no text is returned. Error: W/TextNativeHandle: Native handle not yet available. Reverting to no-op handle. W/DynamiteModule:…
Coder
  • 129
  • 7
1
vote
1 answer

How to Convert Bitmap to "YUV_420_888" format?

I have a bitmap and i want to process this bitmap with ML-kit face recognition. When I give this bitmap directly to ML kit i see this message : "StreamingFormatChecker: ML Kit has detected that you seem to pass camera frames to the detector as a…
Trax
  • 943
  • 2
  • 12
  • 30
1
vote
1 answer

Does Google's ML Kit allow scanning of inverse barcodes?

I'm looking into Google's ML Kit for barcode scanning. One of the issues I'm having is being able to scan inverse barcodes, which are dark/black barcodes on a light/white background. I was wondering if anyone knows if this is possible to achieve…
D114
  • 31
  • 5
1
vote
0 answers

How pass android.media.Image to other plugin on Flutter

I added the Camera plugin to my flutter project. I need to send the image got through ImageStream (CameraImage) to MlKit face detection, but the android API requires android.media.Image. I tried, Convert the CameraImage to android.media.Image on my…
1
vote
1 answer

FaceDetectorOptions.setMinFaceSize() is not working

Currently i am using ML Kit to detect face in my application. It's working but has one problem. I want to set minimum face size on it but it seems to have no effect. It always detects a face no matter what size is it. Here is my code: private fun…
Selmeny
  • 220
  • 3
  • 11
1
vote
1 answer

MLkit face detection not working with front camera for android

I am using MLKit for face detection on android. I am following the official documentation which can be found here - https://developers.google.com/ml-kit/vision/face-detection/android. I am successfully able to detect faces using the rear camera, but…
1
vote
1 answer

Getting less barcode values using Firebase ml vision barcode model compare to firebase ml vision

I am developing an application where I need to extract text and barcode values from image. For this I am using Firebase ML Kit. I have added below dependencies in build.gradle // ML Kit dependencies implementation…
Deepak Sachdeva
  • 950
  • 8
  • 16
1
vote
1 answer

Replacement for FirebaseVisonImageMetadata for standalone ML Kit SDKs

I have been migrating to the new standalone ML Kit from the Firebase ML Kit. While creating the FirebaseVisionImage I used to pass the rotation as FirebaseVisionImageMetadata.ROTATION_180, but according to documentation, the…
Ananth
  • 2,597
  • 1
  • 29
  • 39
1
vote
1 answer

Is it possible to detect gender using firebase ML kit

Is it possible to detect gender using firebase ML kit , if possible give me some some suggestion and resources
1
vote
1 answer

Google MLKit Face Detection works on iPhone 6s but not iPhone X

I'm using Google's MLKit for Face Detection on iOS with Swift. I've followed the getting started guide. The code from the guide worked on my iPhone 6s, however it doesn't work on my iPhone X. It turned out having to do with the imageOrientation…
1
vote
2 answers

How to draw labels on a screen: MLKit Object Detection

This is an extension of a question I asked before. I'm using the recent version of MLKit Object Detection (which doesn't require firebase). I'm using a custom model, and CameraX, to detect objects and label them/get info. Right now, with the code I…
1
vote
1 answer

How to Compare an Image Clicked by the camera of an android phone and an image stored in firebase Database?

I want to create an android Application which compares two images or more specifically two faces. The idea of the app is: It uses ML Kit to recognize face and then stores that image in firebase database and afterwards when the app encounters the…
1
vote
0 answers

What is FirebaseVisionImage in flutter?

I have a piece of code and unable to get this, but only understood part of image picker. Anybody explain me, what is the roll of FirebaseVisionImage. By the way i'm using firebase_ml_vision Future pickImage() async { var awaitImage = await…
Shruti Ramnandan Sharma
  • 4,027
  • 13
  • 44
  • 76
1
vote
1 answer

What is the exact use case of Minimum face size in ML KIT?

As per the official documentation, Minimum Face Size: float (default: 0.1f) - The minimum size, relative to the image, of faces to detect. So, is it like it will detect the faces only if it's matches this size ? I've tested and couldn't get any…
1
vote
1 answer

Passing a base64 string encoded image/ byte image as an image for processsing in Firebase ML Vision in Flutter

I want to OCR text from a base64 encoded image. I know the image works because I can display it using Image.memory(base64Decode(captchaEncodedImgFetched)) Now, the problem is I need to pass this image to Firebase ML Vision for processing. The…
Flutty Dev
  • 11
  • 1