Questions tagged [recognition]
13 questions
21
votes
4 answers
How to know if two images are the same?
I have over 10000 images which about 2000 are duplicates in other formats (as in JPEG, PNG, GIF). Both of these numbers are increasing every day. I need to delete those duplicates and for that I must know how to find them first.
My first thought was…

Aistis
- 313
- 1
- 2
- 5
16
votes
2 answers
Writing my own voice recognition code
Problem Description
I am wanting to use voice recognition as part of a hardware project, which I would like to be completely self containing (I'm using small low power, low speed devices such as Arduino's and Raspberry Pi's, Kinects etc, no running…

jwbensley
- 363
- 1
- 3
- 9
6
votes
2 answers
Image color/grayscale classification
I am trying to classify a set of images into grayscale or color groups. I have been using ImageMagic to do that, comparing the color image to a grayscale version of itself and then using the Peak Error to determine if it is a grayscale image, as…

Sergio R.
- 85
- 2
5
votes
1 answer
How advanced are author-recognition methods?
From a written text by an author if a computer program analyses the text, how much can a computer program tell today about the author of some (long enough to be statistically significant) texts?
Can the computer program even tell with "certainty"…

Niklas Rosencrantz
- 8,008
- 17
- 56
- 95
3
votes
2 answers
Dynamic gesture recognition with fingertip points
I have built a fairly robust program in c++ which tracks several points on a hand. It accurately quantifies the size of the palm, the center of the palm, and the fingertip locations among other hand traits. The points are all stabilized with a…

wprins
- 147
- 2
2
votes
1 answer
Speech Recognition in the .NET framework is not efficient
I want to create a Virtual Keyboard that can catch whatever key you 'speak' and send the keystroke to the active application. The Virtual Keyboard part and linking it to Speech Recognition will be done easily but the problem I am suffering is that…

SinByCos
- 121
- 1
- 1
- 4
2
votes
1 answer
Algorithm for deciding change in gesture
I am developing an application where I am taking dynamic gestures as input and then mapping them to keyboard controls. By dynamic gesture, I mean for example hand moving from left to right or hand moving right to left.
I have four gestures: hand…

Manuj
- 123
- 8
2
votes
1 answer
What branch of computing involves object recognition in images?
Several applications of this is text recognition (OCR), face recognition (biometrics), camera guided missiles (targetting systems). Each involves analyzing images and making out some object of interest. Is there a term that describes this branch…

Chad Harrison
- 887
- 7
- 13
1
vote
1 answer
What is discriminative power?
I'm reading a paper and they use the term "discriminative power" in reference to a recognizer for road sign recognition. What exactly is discriminative power?

Voldemort's Wrath
- 119
- 3
1
vote
0 answers
How to design recognition mechanism of a provisioning system?
I am building a provisioning system, where other software/app/device/user would connect to it. I want a create a recognition mechanism so that I can identify the thing that is connecting to the system is a valid identity.
Some kind of key, specific…

Tapas Bose
- 153
- 6
1
vote
1 answer
What is a lattice parser?
My friend asked me for help with his task: "Redeem a lattice parser with any programming language" - the problem is that he can't clearly explain me how the lattice parser should work. I've tried to google a bit, but all I've found are some academic…

lukaszkups
- 159
- 6
1
vote
2 answers
Simple (hand-drawn) shape recognition
As the input, program would get a set of point (x,y), along with the time a certain point was drawn. (suppose on a tablet).
Let's restrict ourselves to simple polygons.
I implemented Hough transform, in polar coordinates.
Mapping points from (x,y)…

LeastSquaresWonderer
- 113
- 5
-1
votes
1 answer
Optimizing algorithm for categorizing pictures of Magic the Gathering Cards by type?
I'm making a piece of software that is able to recognize Magic the Gathering Cards from a picture or the actual camera.
The codebase scans for rectangular shapes (cards) in an image and calculates 64bit perceptual hashes for them, which get compared…

Martin
- 21