Questions tagged [text-recognition]

314 questions
1
vote
1 answer

Augmented Reality : Recognize hand written number?

I am trying to find a solution for this AR app as the topic tells. I want my app to recognize a hand-written number by the user. The app will tell the user to write down for example number 24 on a paper and move the camera over the written number to…
1
vote
1 answer

Tesseract max recognition time in android

I have a problem with tesseract recognition time in android, it's taking too much time to recognize text. In ios it has a function to give tesseract max recognition time like tesseract.maximumRecognitionTime = 60.0. Is there any way to give…
crafter
  • 53
  • 7
1
vote
1 answer

android - recognized text from tess-two library is wrong

I am trying to use the tess-two library to recognize text from imagae. Here is my code: load.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // recognize text …
Ofek Agmon
  • 5,040
  • 14
  • 57
  • 101
0
votes
0 answers

Why iOS GoogleMLKit/TextRecognition is using older version of FlatBuffers

For iOS, in googlemlkit/textrecognition version 2.2.0, the MLKitTextRecognition framework file shows the older version of FlatBuffers as follows: ... Not enough Too much third_party/openssl/boringssl/src/crypto/x509/x509name.c name= FlatBuffers…
rizzz86
  • 3,862
  • 8
  • 35
  • 52
0
votes
0 answers

How do I make a bounding box match the image when zooming the image?

I am creating a app where we can fetch image from gallery and text will be recognised from it, now upon adding zooming feature the detected text stays static, so is there a way i can track the text from image live, i was using google_ml_kit so far,…
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

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

Google Lens-like zoomable and selectable Flutter widget

I'm building a Google Lens clone app. In Google Lens, you can take a picture and get the text from it. The app marks the text found by using some overlays (in the picture below). That overlay can be zoomed along with the image, and even selectable.…
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

How to Stack a contaner arround every text element recognized by GOOGLE ML KIT in an image

import 'dart:io'; import 'dart:ui' as ui; import 'package:flutter/material.dart'; import 'package:google_ml_kit/google_ml_kit.dart'; class ImageTextRecognitionWidget extends StatefulWidget { final File imageFile; const…
Huy Quoc
  • 1
  • 2
0
votes
0 answers

Need an easy-to-use tool to transform messy text blocks into clean, pre-formatted output

I often need to take dense blocks of texts and convert them into slightly more standardized and easily understood formats (eg, spelling out abbreviations, creating spacing where there had been none prior). Is there a natural language processing or…
Scott Freuda
  • 37
  • 1
  • 4
0
votes
0 answers

Webapplication detecting Windhoek taxi numbers

I would like to build a web application, that can detect the registration numbers of Taxis in Windhoek. Those numbers always consist of a letter and a 3 digit number, here is an example: Windhoek taxi with number This number is displayed on both…
0
votes
1 answer

Get user Singnature from image Flutter

hello any way to get user signature from image , I want to require to get user signature from image , so is there possible to do that your text above mention issue is solve in python through Signature Extractor , but how can solve issue in…
0
votes
0 answers

How to force text recognition running only on the original direction?

How to force text recognition running only on the original direction? When i try to recognize "¥6.7",the result sometimes is right,but sometimes it shows "L'9*",i set direction on val iiprice = InputImage.fromBitmap(bmprice, 0) but it dont works
0
votes
2 answers

ML Kit Text Recognition is crashing in Android Build (armeabi-v7a)

I am using mlkit for text recognition with latest version with native code. implementation 'com.google.android.gms:play-services-mlkit-text-recognition:18.0.2' text recognition provide the desired results with arm64-v8a but crashes with armeabi-v7a…