Tagged Questions
Pattern recognition is the assignment of a label to a given input value.
47
votes
15answers
1k views
Detecting patterns in waves
I'm trying to read a image from a electrocardiography and detect each one of the main waves in it (P wave, QRS complex and T wave). Now I can read the image and get a vector like (4.2; 4.4; 4.9; 4.7; ...
18
votes
7answers
2k views
How To: Pattern Recognition
I'm interested in learning more about pattern recognition. I know that's somewhat of a broad field, so I'll list some specific types of problems I would like to learn to deal with:
Finding patterns ...
16
votes
12answers
2k views
What's the best approach to recognize patterns in data, and what's the best way to learn more on the topic?
A developer I am working with is developing a program that analyzes images of pavement to find cracks in the pavement. For every crack his program finds, it produces an entry in a file that tells me ...
13
votes
3answers
509 views
Birdsong audio analysis - finding how well two clips match
I have ~100 wav audio files at sample rate of 48000 of birds of the same species I'd like to measure the similarity between. I'm starting with wave files, but I know (very slightly) more about ...
12
votes
6answers
492 views
Ways to calculate similarity
I am doing a community website that requires me to calculate the similarity between any two users. Each user is described with the following attributes:
age, skin type (oily, dry), hair type (long, ...
11
votes
3answers
743 views
Beginner's resources/introductions to classification algorithms
everybody. I am entirely new to the topic of classification algorithms, and need a few good pointers about where to start some "serious reading". I am right now in the process of finding out, whether ...
10
votes
4answers
4k views
Algorithm for Hand writing recognition
Is there any specific algorithm for handwriting recognition?
The algorithm should recognize the hand written letter.
Any one could help would be greatly appreciated in advance.
Thank you
8
votes
10answers
2k views
Which algorithm should I use for signal (sound) one class classification?
Update this question was previously titled as "Give me the name of a simple algorithm for signal(sound) pattern detection"
My objective is to detect the presence of a given pattern in a noisy ...
7
votes
5answers
942 views
How to find patterns (lines, circles,…) from a list of points?
I have a list of points. Each point being an x and y coordinate (both of which are integers). Now I'm trying to find known patterns, such as lines, arcs or circles, knowing that the points are not ...
7
votes
3answers
623 views
Can a perceptron be used to detect hand-written digits?
Let's say I have a small bitmap which contains a single digit (0..9) in hand writing.
Is it possible to detect the digit using a (two-layered) perceptron?
Are there other possibilities to detect ...
7
votes
3answers
864 views
Where can I find facial detection software, algorithms, etc?
I'm interested in writing software that depends on being able to identify that there is a face in a picture (or video frame). It doesn't have to ID the face - so no metrics other than:
Is there a ...
6
votes
3answers
1k views
matching jigsaw puzzle pieces
I have nothing useful to do and was playing with jigsaw puzzle like this:
and I was wondering if it'd be possible to make a program that assists me in putting it together.
Imagine that I have a ...
6
votes
5answers
1k views
How to input the image to the neural network?
I understand the way how the neural net is working, but if I want it to use for image processing, actually character recognition, I can't understand, how can I input the image data to the neural net, ...
6
votes
6answers
2k views
detecting an object on the image based on geometrical form
i have a basic understanding in image processing and now studying in-depth the "digital image processing" by Gonzales, but have an urgent task and will appreciate help from somebody experienced in ...
5
votes
5answers
112 views
How would you group/cluster these three areas in arrays in python?
So you have an array
1
2
3
60
70
80
100
220
230
250
For a better understanding:
How would you group/cluster the three areas in arrays in python(v2.6), so you get three arrays in this case ...
5
votes
3answers
425 views
Finding repeating patterns/images in images
I've been looking around for some papers (or info) on this topic.
To avoid a misunderstanding: I'm not talking about finding a supplied pattern in multiple locations.
Repeating patterns can also be ...
5
votes
2answers
155 views
Determining which are the text and graphic regions in an image
I dont know whether should I post this question here or not? But if someone knows it, please answer?
What are the algorithms for determining which region in an image is text and which one is graphic? ...
5
votes
4answers
2k views
How to segment text images using MATLAB?
It's part of the process of OCR,which is :
How to segment the sentences into words,and then characters?
What's the candidate algorithm for this task?
5
votes
4answers
491 views
How are neural networks used when the number of inputs could be variable?
All the examples I have seen of neural networks are for a fixed set of inputs which works good for images and fixed length data. How do you deal with variable length data such sentances, queries or ...
4
votes
4answers
405 views
Which algorithm I can use to find common adjacent words/ pattern recognition?
I have a big table in my database with a lot of words from various texts in the text order. I want to find the number of times/frequency that some set of words appears together.
Example: Supposing I ...
4
votes
2answers
353 views
Drawing shape context logpolar bins in MATLAB
I am using shape context histograms as a feature descriptor to encode silhouette images. To assist with debugging, I would like to view the shape context logpolar bins overlaid on a silhouette image ...
4
votes
1answer
218 views
3-D Shape detection from triangulation mesh
I'm looking for any algorithm or source code which can find whole or partial simple 3-D shapes (sphere, cylinder, cone, etc) in a 3-D triangulation mesh.
I've found several papers on algorithms ...
4
votes
3answers
373 views
Best approach for specific Object/Image Recognition task?
I'm searching for an certain object in my photograph:
Object: Outline of a rectangle with an X in the middle. It looks like a rectangular checkbox. That's all. So, no fill, just lines. The ...
4
votes
2answers
671 views
Simple shape recognition of a set of points in Java
I have a set of randomly distributed point in a coordinate system and I'm interested in recognising if some of the points form any geometric figures like a square, circle, parallelogram or simple ...
3
votes
1answer
70 views
Recommend a library(an API) to recognize the shapes in the picture
I need a library(with an API) which can take as input an image and recognize shapes from it, returning the coordinates of the shapes.
The deployment of the library must be simple, something in the ...
3
votes
4answers
346 views
How to go about searching for a player models in COD with OpenCV
I am attempting to create a program that can find human figures in video of game play of call of duty. I have compiled a list of ~2200 separate images from this video that either contain a human ...
3
votes
2answers
277 views
Accelerometer signal segmentation
I have a 1D accelerometer signal (one axis only). I would like to create a robust algorithm, which would be able to recognize some shapes in the signal.
At first I apply a moving average filter to ...
3
votes
1answer
373 views
Synchronizing text and audio. Is there a NLP/speech-to-text library to do this?
I would like to synchronize a spoken recording against a known text. Is there a speech-to-text / natural language processing library that would facilitate this? I imagine I'd want to detect word ...
3
votes
2answers
238 views
Finding a small image in a bigger one [closed]
Possible Duplicate:
Matching a rotated bitmap to a collage image
Given an image with a large dimension (> 1.000 x 1.000). What is a good approach to find a small image (e.g. 50 x 50) in the ...
3
votes
1answer
337 views
How to engineer features for machine learning
Do you have some advices or reading how to engineer features for a machine learning task?
Good input features are important even for a neural network. The chosen features will affect the needed number ...
3
votes
1answer
216 views
what is the best way to generate fake data for classification problem?
i'm working on a project and i have a subset of user's key-stroke time data.This means that the user makes n attempts and i will use these recorded attempt time data in various kinds of classification ...
3
votes
5answers
2k views
Simple object recognition
===SOLVED===
Thanks for your suggestions and comments. By working on the flood_fill algorithm given in Beginning Python Visualization book (Chapter 9 - Image Processing) I have implemented what I ...
3
votes
3answers
541 views
Recognizing patterns when drawing over the iPhone screen
I'm trying to write a game where the user can issue commands by drawing certain patterns with his fingers..for example, if he draws a circle, an 'S' letter, an expiral, etc.
I'm already familiar with ...
3
votes
1answer
1k views
Pattern recognition algorithms
In the past I had to develop a program which acted as a rule evaluator. You had an antecedent and some consecuents (actions) so if the antecedent evaled to true the actions where performed.
At that ...
2
votes
0answers
53 views
Blackberry Bold- Unable to recognize URLs and even custom patterns registered
We have a blackberry native app deployed on a BB Bold 9700 (OS Version: 5.0)
The app registers a custom pattern of the form string://[0-9]* . Strings matching the pattern get highlighted but the app ...
2
votes
3answers
377 views
Looking for an Image Comparison/Pattern Recognition Library
The end goal would be to see if this image contains this image.
the compare needs to support minor distortion, scaling, color differences, rotation, and brightness differences.
it can be in any ...
2
votes
2answers
456 views
Java pattern recognition API for stock market
Does someone know where I can find a Java API dealing with pattern recognition for the financial market ? I've already had a look to TA_LIB, but it's not exactly doing what I want (dealing mostly with ...
2
votes
1answer
432 views
accelerometer - Movement pattern recognition (iphone)
I have to find the best approach for tackling a problem for trying to recognize physical movements - with an iPhone in a pocket - like waling, stopping, turning left/right, sitting.
I was thinking on ...
2
votes
3answers
279 views
C5 algorithm implementation?
Do you know where can I find some information of this algorithm, to study it??. Is there already an example of its implementation, or, only Quinlan knows its implementation??
2
votes
1answer
926 views
looking for good open source image or object recognition library to power visual search backend
I'm looking for a good open source alternative to technology similar to snaptell.com, kooaba.com, google goggles or moodstocks.com to name a few of the commercial options available.
I'm not sure what ...
2
votes
3answers
235 views
Neural network output layer for multiple pattern recognition
Assume that I have a method or other neural network to do pattern detection on an image correctly. How should I design a neural network where there are multiple patterns in an image?
Say that in an ...
2
votes
3answers
473 views
Training for pattern recognition (neural network)
How do you train Neural Network for pattern recognition? For example a face recognition in a picture how would you define the output neurons? (eg. how to detect where is the face exactly, rather than ...
2
votes
2answers
516 views
Java String Pattern Recognition
I have a string that is about a thousand characters long composed of L's, T's, and A's. I'm pretty sure there is a simple pattern in it and I'm wondering if there is any quick and easy way of going ...
2
votes
3answers
243 views
Finding the closest match
I Have an object with a set of parameters like:
var obj = new {Param1 = 100; Param2 = 212; Param3 = 311; param4 = 11; Param5 = 290;}
On the other side i have a list of object:
var obj1 = new ...
2
votes
5answers
158 views
Calculating probability that a string has been randomized? - Python
this is correlated to a question I asked earlier (question)
I have a list of manually created strings such as:
lucy87
gordan_king
fancy_unicorn77
joplucky_kanga90
...
2
votes
3answers
933 views
How to use DoG Pyramid in SIFT
I am very new in image processing and pattern recognition. I am trying to implement SIFT algorithm where I am able to create the DoG pyramid and identify the local maximum or minimum in each octave. ...
2
votes
1answer
260 views
character matching in grayscale image
I made patterns: images with the "A" letter of different sizes (from 12 to 72: 12, 14, .., 72)
And I tested the method of pattern matching and it gave a good results.
One way to select text regions ...
2
votes
3answers
404 views
Multivariate Decision Tree learner
A lot univariate decision tree learner implementations (C4.5 etc) do exist, but does actually someone know multivariate decision tree learner algorithms?
2
votes
2answers
207 views
how to recognize the kind of object we intrest in picture
this is a picture of a dog's contour and a horse's contour
how to make computer know it is a horse or a dog or a person.
2
votes
3answers
807 views
C++ library/framework,API for Mixture models in machine learning
I want to use Gaussian mixture models for data clustering ( using an expectation maximization (EM) algorithm, which assigns posterior probabilities to each component density with respect to each ...