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
0
votes
0 answers

Is there a way to get space between char in ML kit android

I am developing a text scanner application by using ML kit. I am getting proper response. And text is coming with different blocks. Is there a way to know each block of text has space or not?
0
votes
0 answers

Can we explicitly mention the unbundled model version of MLKit barcode to be downloaded by Google Play Services?

I am planning to use unbundled barcode model of MLKit. In the documentation https://developers.google.com/ml-kit/tips/installation-paths it is mentioned that for unbundled models, models will be automatically updated by play services when a new…
0
votes
0 answers

How can i achieve text recognition functionality through camera in react-native IOS

Although i use react-native-camera for this but when i use onTextRecognized method of react native camera it crashed the app when open camera in android stack trace: "react-native": "0.71.3", "react-native-camera": "^4.2.1", Although i got some luck…
0
votes
0 answers

The camera flickers when using frameProcessor from vision-camera-code-scanner React Native plugin

I'm trying vision-camera-code-scanner package because react-native-qrcode-scanner is no longuer active. Everything worked without issues with the react-native-qrcode-scanner. But now, the camera flickers when I activate the frameProcessor. Here is…
0
votes
0 answers

Automatic birghtness adjustment on Android Camera

Not sure if here is the best place to ask this, but I would like to implement automatic brightness adjustment feature in an Android, like what Zoom and Teams do in video meetings. Basically brightness adjustment applied to camera feeds. What's the…
Tina J
  • 4,983
  • 13
  • 59
  • 125
0
votes
0 answers

Why is Android Studio saying that "java" and "also" are "unresolved references"?

Currently, I am trying to implement Google's ML-Kit Vision's Barcode Scanning using these two tutorials: https://www.youtube.com/watch?v=ju4AYKMe3Sw https://www.youtube.com/watch?v=UIQ4_1B420g&t=90s However, when putting the code into Android…
0
votes
0 answers

flutter google_mlkit_digital_ink_recognition candidates scores always 0

I am using google_mlkit_digital_ink_recognition in flutter to recognize the letter that user draws. it is working fine and the candidates are shown, but the problem is candidate.score is always 0. code example: var _digitalInkRecognizer =…
0
votes
0 answers

Facial landmark measurements using Google ML Kit face detection data

I'm experimenting with creating a photo verification feature using Googles ML Kit face detection library (API reference). I'm get the following facial data: { boundingBox: (rect), headEulerAngleX: (double), headEulerAngleY: (double), …
0
votes
1 answer

How can the user be informed to move the camera closer to the image direction for improved text extraction?

Is there any way to guide customers to come closer to the image or move the camera back from the image to properly scan the data using CameraX and TextRecognizer?
0
votes
0 answers

MLKit Barcode scan on iOS has wrong bounds/frame/cornerPoints coordinates

I followed the guide, and while it works on Android just fine, on iOS all the coordinates for scanned barcodes are wrong. I'm not going to paste my whole code as it is the same as one from the guide. The issue seems to be connected with the…
JoKr
  • 4,976
  • 8
  • 27
  • 39
0
votes
0 answers

is there any way to extract the link from the bitmap image with 100% accuracy using google vision ml kit, android kotlin?

I have this image, I am trying to extract the link from the image using google ml Kit but getting the wrong hyperlink, as you know that if it is a wrong hyperlink, it's of no use. After processing the image, it is giving the result and the hyperlink…
0
votes
0 answers

Face Detection with ML Kit for Android

I am currently making a face detection app. When I move the camera quickly, non face images are sometimes got from detector. override fun analyze(imageProxy: ImageProxy) { val t1 = System.currentTimeMillis() val btm = imageProxy.toBitmap()…
0
votes
0 answers

Android Google ML Vision Barcode Scanner Limitations

I have been working with the google ML kit for the past couple of days and have stumbled upon some problems. Specifically when I use their BarcodeScanner I am getting limited by only getting up-to 10 barcodes from the screen or an image at a…
0
votes
0 answers

If cameraX's videoCapture and ImageAnlaysis are used together, the preview becomes strange. What should I do? & How can I draw on a video frame?

When cameraX's videoCapture and ImageAnlaysis are used together, the preview is rotated 90 degrees, and the recorded video in the gallery is longer than the actual length. why is this happening? private fun bindUseCase() { if…
0
votes
0 answers

How to recognize the language of text in an image from a Java program for Android using Google's ML Kit?

I want to recognize text from different languages across globe in any image and translate to English. Google's ML KIT for vision supports 5 different Text recognizers for the 5 scripts: Latin, Devanagari, Chinese, Japanese and Korean. Do I need to…