Questions tagged [pattern-recognition]

Pattern recognition is the term given to the science of automating the classification of input into pre-determined categories, or on the other hand, of being able to recognise particular categories of input by their characteristics.

Pattern recognition is the assignment of a label to a given input value. It is a kind of classification task, such that an input is classified to pre-trained class. Pattern recognition is studied in many fields, including psychology, psychiatry, ethology, cognitive science, traffic flow and computer science.

See also:

515 questions
0
votes
1 answer

Regression using two dependent variables

I have some data for time series prediction. variable 1 is speed and variable 2 is time of the day the vehicle is starting. The output is time taken for the vehicle to reach destination. I used both variable 1 and variable 2 as inputs for svr using…
0
votes
2 answers

What classifier to use while performing unsupervised learning

I am new to Machine learning and I have this basic question. As I am weak in Math part of the algorithm I find it difficult to understand this. When you are given a task to design a classifier(keep it simple -- a 2 class classifier) using…
0
votes
1 answer

Crossvlaidation classifier display outputs in matlab

I have a simple question and I'am not very familiar with matlab. so code would be very helpfull ;). I do have a KNN classifier which I want to evaluate via crossvalidation. My code looks like the following: load ds train_data=…
loop
  • 17
  • 3
0
votes
1 answer

Accuracy of Neural network Output-Matlab ANN Toolbox

I'm relatively new to Matlab ANN Toolbox. I am training the NN with pattern recognition and target matrix of 3x8670 containing 1s and 0s, using one hidden layer, 40 neurons and the rest with default settings. When I get the simulated output for new…
0
votes
0 answers

Testing the validity of a boolean pattern recognition algorithm

How do I determine a sufficient sample size to test an algorithm that can not be unit tested (~pattern recognition). I have a relatively simple algorithm that uses vehicle position data, and bridge positional data, to determine whether a vehicle has…
Jags
  • 1,639
  • 1
  • 16
  • 30
0
votes
4 answers

Using C++ in xcode for image and video processing

I am studying in the area of image and video processing - specifically in the field of pattern recognition (objects, people etc.). I wish to use a programming language to apply the transformation to images and video (more importantly video). I am…
user7289
  • 32,560
  • 28
  • 71
  • 88
0
votes
0 answers

How can I use hierarchicalClustering?

I use this code: int c_count =cv::flann::hierarchicalClustering >(data,cluster,kmeans_param); I got this error: error C2146: syntax error : missing ';' before identifier 'ElementType' How can I solve it? My features is 3d (x,y,theta)…
Mostafa Sataki
  • 305
  • 3
  • 11
0
votes
4 answers

How would you make a Windows application that conditionally blocks input?

You may have heard of PawSense, a Windows-only utility that prevents keystrokes from being entered when it believes there is a cat or other animal on the keyboard typing nonsense input like "zlxkkkkkkkk;". It seems like a fun project to do in my…
Warren Henning
  • 140
  • 1
  • 7
0
votes
1 answer

How the support vectors in the svmtrain function, converge the input data into a small subset?

The input to the svmtrain function is a matrix with the dimension 151x22. While applying the svmtrain function with the above matrix ( as shown below ), I am getting a structure. Inside the structure, there is a field named "support vectors". The…
Mrk
  • 557
  • 1
  • 10
  • 30
0
votes
1 answer

Waveform Trend Analysis/Pattern Recognition

Im appealing to your brighter minds on this one! This is my first foray into pattern recognition/trend analysis, basically i want to be able to differentiate between waveforms (essentialy line graphs). For instance the original graph would…
Rg786
  • 305
  • 3
  • 8
  • 26
0
votes
2 answers

Techniques for image analysis of gray scale images

I have taken on a project to automatically analyse images taken from a microscope of a specific type micro fractures. The problem is that the camera used was on an "auto" setting and so the micro fractures (which look like pin pricks) are a variety…
Chris Headleand
  • 6,003
  • 16
  • 51
  • 69
0
votes
4 answers

libsvm liblinear how to use histogram intersection/chi square kernels

Is it possible to use histogram intersection /chi sauare kernels in LIBLINEAR? My problem is I have a feature vector of size 5000 all are histogram features. I dont know how to train/ test with SVM. How can I train this using SVM? libSVM supports…
user570593
  • 3,420
  • 12
  • 56
  • 91
0
votes
1 answer

Fast image scanning

I have a very large image and I want to scan it with a small template (T) and store in a database and use that database for image reconstruction. But, if I want to scan all of the image, the size of my pattern database will be very large. Is there…
0
votes
1 answer

Why won't this work; opencv Mat_

I can't seem to get this to work. I'm trying to get the pixel value of an image but first need to change the color of the image, but since I cannot use int or just Mat because the values are not whole numbers, I have to use and because of…
user1371674
  • 3
  • 1
  • 3
0
votes
1 answer

OpenCV for delphi 7, issue with the library wrapper

I would like to use the library in my D7 project. I have downloaded the wrappers from: sourceforge.net The problem is that the example the author wrote to recognize squares in the given image doesn't work. After some time it raises AV exception…
John
  • 1,834
  • 5
  • 32
  • 60