pattern-recognition

Hough Transform Algorithm for Text Detection in Images [closed]

微笑、不失礼 提交于 2019-12-06 11:45:02
Closed . This question needs to be more focused . It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post . Closed 5 years ago . Hough Transform Algorithm is one of the algorithm use for text line detection and edge detection. Does Hough Transform Algorithm can be use for Detecting text in Images? What must be the process or implementation in java for this question? or It must be have another algorithm to make it possilble? Hoping for positive response. Hough transform was initially designed to detect

Measure of accuracy in pattern recognition using SURF in OpenCV

左心房为你撑大大i 提交于 2019-12-06 11:37:55
问题 I’m currently working on pattern recognition using SURF in OpenCV. What do I have so far: I’ve written a program in C# where I can select a source-image and a template which I want to find. After that I transfer both pictures into a C++-dll where I’ve implemented a program using the OpenCV-SURFdetector, which returns all the keypoints and matches back to my C#-program where I try to draw a rectangle around my matches. Now my question: Is there a common measure of accuracy in pattern

Taking the HOG descriptor of an image using HOGDescriptor from EMGU CV C#

女生的网名这么多〃 提交于 2019-12-06 11:16:42
问题 How can I compute the hog descriptor vector of an image using EMGU CV and C#. If i make something like this: float[] f; Image<Bgr, Byte> img1 = new Image<Bgr, Byte>(fullPath); f = hog.Compute(img1, Size.Empty, Size.Empty,null ); it doesn't work, it gives a Object reference not set to an instance of an object. exception. I want to compute the hog descriptor with default parameters. Does someone know how to do this ? Emgu cv is very poorly documented. I have modified the code and now I am

Can anyone suggest a library for audio pattern recognition?

青春壹個敷衍的年華 提交于 2019-12-06 10:00:49
Description of my problem: I have a sample audio file and need to find it in another audio file (for example, to find starting and ending time of recognition fragment in the audio file). Is there any library for performing this task? 1) CMU Sphinx . It is a Open Source Toolkit For Speech Recognition. Description : CMUSphinx is a speaker-independent large vocabulary continuous speech recognizer released under BSD style license. It is also a collection of open source tools and resources that allows researchers and developers to build speech recognition systems. 2) RWTH ASR (short RASR) is an

Newbie: where to start given a problem to predict future success or not

ぃ、小莉子 提交于 2019-12-04 21:36:29
We have had a production web based product that allows users to make predictions about the future value (or demand) of goods, the historical data contains about 100k examples, each example has about 5 parameters; Consider a class of data called a prediciton: prediction { id: int predictor: int predictionDate: date predictedProductId: int predictedDirection: byte (0 for decrease, 1 for increase) valueAtPrediciton: float } and a paired result class that measures the result of the prediction: predictionResult { id: int valueTenDaysAfterPrediction: float valueTwentyDaysAfterPrediction: float

Measure of accuracy in pattern recognition using SURF in OpenCV

帅比萌擦擦* 提交于 2019-12-04 15:22:14
I’m currently working on pattern recognition using SURF in OpenCV. What do I have so far: I’ve written a program in C# where I can select a source-image and a template which I want to find. After that I transfer both pictures into a C++-dll where I’ve implemented a program using the OpenCV-SURFdetector, which returns all the keypoints and matches back to my C#-program where I try to draw a rectangle around my matches. Now my question: Is there a common measure of accuracy in pattern recognition? Like for example number of matches in proportion to the number of keypoints in the template? Or

How to go about searching for a player models in COD with OpenCV

安稳与你 提交于 2019-12-04 08:41:16
问题 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 figure or do not. I have then attempted to train a neural network to tell the difference between the two sets of images. Then, I divide each video frame up into a couple hundred gridded rectangles and I check each with my ANN. The rectangles are overlapping to attempt to capture figures that are

Detecting patterns in waves

淺唱寂寞╮ 提交于 2019-12-04 07:21:58
问题 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; ...) representative of the values in the electrocardiography, what is half of the problem. I need a algorithm that can walk through this vector and detect when each of this waves start and end. Here is a example of one of its graphs: Would be easy if they always had the same size, but it's not

accelerometer - Movement pattern recognition (iphone)

倾然丶 夕夏残阳落幕 提交于 2019-12-03 16:48:11
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 just heuristically find the data corresponding to each action, then to check the incoming values against this data (with a threshold) and see what's happening. That's a very rough approach, of course, so maybe using something like the Support Vector Machine methods, but this seems too complicated for the amount of time I have to develop this. Which approach would you suggest here? Walking : Do an

Multivariate Decision Tree learner

五迷三道 提交于 2019-12-03 08:56:35
A lot univariate decision tree learner implementations (C4.5 etc) do exist, but does actually someone know multivariate decision tree learner algorithms? Bennett and Blue's A Support Vector Machine Approach to Decision Trees does multivariate splits by using embedded SVMs for each decision in the tree. Similarly, in Multicategory classification via discrete support vector machines (2009) , Orsenigo and Vercellis embed a multicategory variant of discrete support vector machines (DSVM) into the decision tree nodes. CART algorithm for decisions tree can be made into a Multivariate. CART is a