Questions tagged [image-recognition]

Classification of a detected object into different known categories.

The classical problem in computer vision, image processing, and machine vision is that of determining whether or not the image data contains some specific object, feature, or activity. There are different varieties of this , such as object detection, Identification (like face recognition ), Content-based image retrieval ( like similar images option in google image search) etc.

1351 questions
12
votes
2 answers

What's the best marker in a video for recognition?

I'm currently building an automatic synchronisation processing between a video track (coming from a camera) and an audio tracks (coming from a micro). To do that, I plan to build a small web application who will display a clapper with my smartphone…
mbreton
  • 674
  • 1
  • 6
  • 19
12
votes
3 answers

C# image recognition

I'm currently searching for a C# image recognition library. What I want to do: I want to write a function that scans an image and returns if another image is part of it. Or at least something that looks familiar in case that the angles of the two…
Mickey
  • 943
  • 1
  • 19
  • 41
12
votes
4 answers

What are good features for classifying photos of clothing?

I want to build a clothing classifier that takes a photo of an item of clothing and classifies it as 'jeans', 'dress', 'trainers' etc. Some examples: These images are from retailer websites, so are typically taken from the same angle, typically…
Wilfred Hughes
  • 29,846
  • 15
  • 139
  • 192
11
votes
3 answers

Differences between two images with slightly different point of view and lighting conditions with OpenCV

With the method explained in CV - Extract differences between two images we can identify the differences between two aligned images. How to do this with OpenCV when the camera angle (point of view) and the lighting condition are slightly…
Basj
  • 41,386
  • 99
  • 383
  • 673
11
votes
3 answers

OpenCV shape matching between two similar shapes

I'm trying to match a slightly irregular shape to a database of shapes. For example, here the contour I'm trying to match: For more information, this is an outline of an HDMI connector, represented as a contour. It is slightly rough as this was…
Cyon
  • 414
  • 1
  • 4
  • 13
11
votes
3 answers

Classify faces from VNFaceObservation

I'm working with Vision framework to detect faces and objects on multiple images and works fantastic. But I have a question that I can't find on documentation. The Photos app on iOS classify faces and you can click on face and show all the images…
mhergon
  • 1,688
  • 1
  • 18
  • 39
11
votes
2 answers

Retrain Tensorflow final layer but still use previous Imagenet classes

My objective is to "add" more classes to the existing 1000 Imagenet classes that came with Tensorflow Inception. Now I could just re-run the whole thing by training from scratch using bazel-bin/inception/imagenet_train but that would take a long…
HP.
  • 19,226
  • 53
  • 154
  • 253
11
votes
3 answers

Using Nearest Neighbour Algorithm for image pattern recognition

So I want to be able to recognise patterns in images (such as a number 4), I have been reading about different algorithms and I would really like to use the Nearest Neighbour algorithm, it looks simple and I do understand it based on this…
user293895
  • 1,465
  • 3
  • 22
  • 39
11
votes
1 answer

Distance between hyperplanes

I'm trying to teach myself some machine learning, and have been using the MNIST database (http://yann.lecun.com/exdb/mnist/) do so. The author of that site wrote a paper in '98 on all different kinds of handwriting recognition techniques, available…
10
votes
3 answers

Real time OCR in python

The problem Im trying to capture my desktop with OpenCV and have Tesseract OCR find text and set it as a variable, for example, if I was going to play a game and have the capturing frame over a resource amount, I want it to print that and use it. A…
Novet
  • 105
  • 1
  • 1
  • 5
10
votes
2 answers

How to search for an image on screen in C#?

I want to search for an image on screen using C# or other .NET languages(like powershell). Something like i give an image location in the file system and the code consider the whole screen as an image and search the image in the file system in the…
Just a learner
  • 26,690
  • 50
  • 155
  • 234
10
votes
5 answers

Retrieve the pixel values of an image with Haskell

Is there a way or a library available that can load an image (jpeg, png, etc) and assign the pixel values of that image into a list or matrix? I'd like to do some experiments with image and pattern recognition. A little nudge in the right direction…
subtlearray
  • 1,251
  • 1
  • 11
  • 23
9
votes
4 answers

Logo detection using OpenCV

I'm attempting to implement an easter egg in a mobile app I'm working on. These easter egg will be triggered when a logo is detected in the camera view. The logo I'm trying to detect is this one: . I'm not quite sure what the best way to approach…
dbotha
  • 1,501
  • 4
  • 20
  • 38
9
votes
7 answers

Image downscaling algorithm

Could you help me find the right algorithm for image resizing? I have an image of a number. The maximum size is 200x200, I need to get an image with size 15x15 or even less. The image is monochrome (black and white) and the result should be the…
user1131662
  • 241
  • 1
  • 5
  • 12
9
votes
2 answers

Shape Recognition - counting mangoes

I would like to be able to process a close-up image of a mango tree so that I can identify and count the mangoes. A mango is roughly an oval or ellipse shape that is uniquely different from the leaves and branches in the image. I would like to be…
1 2
3
90 91