1,322 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
762
views
How to Integrate Google Cloud Vision API with PHP for Image Label Detection?
I am trying to integrate the Google Cloud Vision API into my PHP project to perform image label detection. I've followed the official documentation, but I'm running into some issues. Here are the ...
0
votes
1
answer
166
views
Python tesseract OCR detecting text improperly
testimg.png:
I am trying to detect the Text in this image and it gives me nothing, it works for some other text barely. It gives me some of the word replaced with random letters and i have to compare ...
0
votes
0
answers
127
views
Grid Image Recognition for Board Game
I want to create an automatic scoring app for a board game. The hard part of the app would be to turn this image into a data structure:
[
[
{ name: "granary" },
{ name: "opposite ...
0
votes
1
answer
35
views
Which algorithm to use to detect the appearance of sidebar on car multimedia booting?
I need to create a system for detecting the time that elapses between the start of booting the multimedia system in the car until the first appearance of the sidebar on the screen. Sidebar has a ...
0
votes
0
answers
62
views
Optimal autoencoder model for picture anomaly detection
I'm training an autoencoder to detect anomalies among pictures based on the decoder error value. I tried out different ways of image preprocessing, NN architectures, losses, activation functions, ...
1
vote
1
answer
607
views
How can I use Google Document AI OCR to find the non-text images in a text document?
How can I use Google Document AI OCR to find the non-text images in a text document?
I'm using Google Document AI Enterprise OCR to OCR images (scans of old books_, and it works well. The books have ...
0
votes
0
answers
93
views
How to Read the text from images(OCR) where the font style is 7 segment font
I have been working on extracting text from images, specifically focusing on seven-segment fonts, using .NET. Unfortunately, my attempts with popular libraries like Tesseract, IronOcr and many more ...
0
votes
1
answer
396
views
How crop image before Image Classification
I am using MediaPipe to find the breed of a dog, if there is one, in a camera image. I first use ObjectDetector, and if it finds a dog, I send what is inside the bounding box to ImageClassifier, with ...
0
votes
1
answer
104
views
How can i fix colour detection in my code?
import pyautogui
import keyboard
import time
running = True
print("Script will start in 5 seconds.")
time.sleep(5) # Wait for 5 seconds before starting
while running:
keyboard....
0
votes
1
answer
429
views
Extracting Color Information from a Trained CNN Model
I am currently working on interpreting a trained CNN model used for image recognition. Specifically, I want to understand how color information is represented in the feature vector, particularly in ...
1
vote
0
answers
86
views
How to extract the line segment information in a picture accurately in Python
I'm trying to get detailed information on each line segment, such as the coordinates of two endpoints and whether it is straight or curved, in a picture in Python.
For example, an input image below is ...
1
vote
1
answer
122
views
How can I fill missing parts in particle borders, so that these borders/contours form a continous outline?
I have this binary Black Particle Borders image of many non-spherical particle borders/outlines. Unfortunately, due to bad image quality, the borders are not continuous, but have some gaps. Is there ...
1
vote
1
answer
346
views
How to find image on screen if there are rapid objects moving over it?
I am currently discovering image recognition and my goal is to get all the informations from the board of a mobile game that look like this :
board
As you can see, there are 5 different dices, their ...
2
votes
1
answer
1k
views
KerasOCR, EasyOCR, Pytesseract not able to recognize simple numbers
I was trying to run OCRs on my single character images, all being numbers. I tried running EasyOCR, Keras-OCR and Pytesseract on the image, but none returned proper output. I even tried MNIST, but ...
0
votes
1
answer
610
views
Create and display 10-bit images on a 10-bit monitor
As part of a visual recognition experiment, I need to generate 10-bit images pixel-by-pixel and display them on the monitor (10 bits per color). I would like to understand how this can be implemented ...