Tagged Questions
1
vote
1answer
27 views
Using LIBSVM on Visual studio 2010
I wanted to use libsvm in visual studio 2010 just for classifying my test sample and nothing more ..
I've worked with libsvm using the documentation provided by its official site ...
So I used ...
0
votes
1answer
33 views
How to use Cross-Validation in OpenCV?
Can somebody please tell me how to employ cross-validation in OpenCV? I am working with Neural Networks module in OpenCV and there is no in-built option for cross-validation as in the case of Decision ...
1
vote
3answers
86 views
'CreateDirectoryW' : cannot convert parameter 1 from 'const char *' to 'LPCWSTR' in OpenCV 2.4.5 and VS 2010
I was trying the sample code bagofwords_classification.cpp from openCV 2.4.5 to Visual Studio 2010 (VC++ based). But I found the error code :
error C2664: 'CreateDirectoryW' : cannot convert ...
0
votes
0answers
32 views
OpenCV : CascadeClassifier Method for different set of features
is it possible to use any type of features on the CascadeClassifier method? If so, is there any tutorial explaining how to do so?
I've created an algorithm that extracts a very large pool of features ...
0
votes
2answers
87 views
How to utilize cascade classifier in custom detection algorithm?
So, I've created my own HoG features extractor and a simple sliding window algorithm, which pseudo code looks like this:
for( int i = 0; i < img.rows; i++ ) {
for( int j = 0; j < img.cols; ...
1
vote
0answers
87 views
Opencv:Extract features from feature based object detection
I am having a tough time in understanding the intricacies of SURF and SIFT algorithm.I am basically novice in image processing.I went through Lowe's paper and I have the following questions.Shall be ...
-1
votes
1answer
33 views
How to Classify Data In Opencv [closed]
I have 130 objects.Each object is defined by 13 points(2-d points),these 13 points form data_unit. Thus there are 130 data_units. I want to classify these data_units into 4 classes. How can we do ...
0
votes
1answer
101 views
Hand shape analysis with Hidden Markov Model
I am currently working on a dynamic gesture recognition system. I opted to go for the curvature feature of the hand shape. At the moment I am able to obtain a list of angles of the hand contour ...
1
vote
1answer
412 views
SVM for HOG descriptors in opencv
I am trying to classify the yard digits on the football field. I am able to detect them (different method) well. I have a minimal bounding box drawn around the tens place digits '1,2,3,4,5'. My goal ...
2
votes
0answers
108 views
Cascade Classifier Method
I want to use the Cascade Classifier Method to compare a found round shape (from the image set where a face has been detected) and a reference circle that I define first so that I can match those two ...
3
votes
2answers
363 views
Vehicle segmentation and tracking
I've been working on a project for some time, to detect and track (moving)vehicles in video captured from UAV's, currently I am using an SVM trained on bag-of-feature representations of local features ...
1
vote
3answers
169 views
Alternative to support vector machine classifier in python?
I have to make comparison between 155 image feature vectors. Every feature vector has got 5 features.
My image are divided in 10 classes.
Unfortunately i need at least 100 images for class for using ...
0
votes
1answer
259 views
Explanation of cascade.xml in a haar classifier
It would be best if someone could explain the numbers/values in the cascade.xml entirely.
Example in:
<!-- stage 0 -->
<_>
<maxWeakCount>3</maxWeakCount>
...
1
vote
2answers
250 views
At what stage the training exactly takes place in FlannBasedMatcher in OpenCV?
The following code is in C++ and I am using OpenCV for my experiment. Suppose I am using kd-tree (FlannBasedMatcher) in the following way:
//these are inputs to the code snippet below.
//They are ...
0
votes
0answers
232 views
Display Haar features from a trained AdaBoost classfier
Is there a way to display visually which Haar features are used at every stage of the classifier?
I have recently trained a classfier to detect vehicles, using opencv_traincascade.exe.
For further ...
0
votes
1answer
329 views
Is Dense SIFT better for Bag-Of-Words than SIFT?
I'm implementing a Bag-of-Words image classifier using OpenCV. Initially I've tested SURF descriptors extracted in SURF keypoints. I've heard that Dense SIFT (or PHOW) descriptors can work better for ...
1
vote
1answer
264 views
Combining multiple Haar Classifiers with OpenCV
I was wandering if there is a way to combine Haar-Classifiers from different trained cascades?
I have a scenario, where I detect one object that differs depending on the angle of the object. So I ...
0
votes
1answer
552 views
Training an OpenCV LBP Classifier
I need to create my own LBP Cascade Classifier using OpenCV, so to get used to the process, I have been using a very small file set, to get the hang of it.
However, I am struggling to find decent ...
0
votes
0answers
323 views
OpenCV: Load multiple images and cluster them with bag of words
I am trying to cluster video frames abnormal and normal. I divided into frames as normal and abnormal with frames. I have two problem, I am not sure whether my approach is true or not and I got an ...
1
vote
1answer
123 views
Fail to form a binary classification and use predict_prob(): Random Forest, opencv
I used opencv to do random forest and I've built the forests successfully. But then I need to use predict_prob to know the exact chance that sample belongs to the second class.
I now how it works but ...
3
votes
2answers
505 views
Train skin pixels using Opencv CvNormalBayesClassifier
I'm very new to OpenCV. I am trying to use the CvNormalBayesClassifier to train my program to learn skin pixel colours.
Currently I have got around 20 human pictures (face/other body parts) under ...
2
votes
2answers
334 views
Automatic flora detection in Images [closed]
My image dataset is from http://www.image-net.org. There are various synsets for different things like flora, fauna, persons, etc
I have to train a classifier which predicts 1 if the image belongs to ...
0
votes
1answer
222 views
best features to extract for hand posture recognition?
I'm doing a project on hand posture recognition with OpenCV.
I've done the segmentation using normalizedRGB and found the contours using cvFindContours. Now I need to find the features to be ...
3
votes
1answer
648 views
OpenCV and Latent SVM Detector
I was wondering if anyone has managed to use the OpenCV implementation of Latent SVM Detector (http://docs.opencv.org/modules/objdetect/doc/latent_svm.html) successfully. There is a sample code that ...
0
votes
2answers
1k views
OpenCV 2.3.0 cascade classifier
I am trying to make a face detection software using OpenCV 2.3.0. While OpenCV 2.4 has the face recognizer class 2.3.0 is devoid of this feature. I checked the documentation and is specifies that the ...
3
votes
1answer
612 views
Undefined symbols for architecture x86_64: “_cvHaarDetectObjects” Eclipse
I'm trying to build the following sample code:
#include "cv.h"
#include "highgui.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include ...
0
votes
2answers
338 views
Image classification with opencv
We're currently working on an android ocr app using opencv.pre-processing ,segmentation ,Feature extraction steps are done. Classification is the remaining step and we're stuck ..We're using a DB ...
5
votes
2answers
459 views
Classifying lines with opencv
I'm working on an image classification project, I've extracted curved lines from image using edge-detection, and need to classify them based on their curvature.
For example in the image below there ...
1
vote
0answers
133 views
Opencv classifier update error
I am getting an error while trying to update the CvBoost classifier in OpenCV, the error i am getting is as follows
OpenCV Error: Bad argument (The new training data must have the same types and the ...
2
votes
2answers
2k views
OpenCV Cascade Classification with Histogram of Oriented Gradients (HOGs) feature type
I am trying to use the OpenCV's cascade classifier based on Histogram of Oriented Objects (HOGs) feature type -- such as the paper "Fast Human Detection Using a Cascade of Histograms of Oriented ...
0
votes
1answer
178 views
haar classifiers exchange
I found just one topic about this from 2010 and wonder if there is now any website or place where people can download free or buy trained clasiffiers for haar detection.
thanks.
2
votes
2answers
928 views
Build a custom svm kernel matrix with opencv
I have to train a Support Vector Machine model and I'd like to use a custom kernel matrix, instead of the preset ones (like RBF, Poly, ecc.).
How can I do that (if is it possible) with opencv's ...
1
vote
3answers
920 views
Find eyes with glasses OpenCv
I have this problem, my code doesn't work when i try to find eyes with glasses with openCv library for android.
My code is the following:
try {
InputStream is = ...
0
votes
1answer
907 views
HOG in OpenCV for classification of entire images
I understand that Histograms of Gradients in OpenCV are typically used on image patches in order to detect and classify objects in an image.
However, I would like to use HOG to build a feature vector ...
7
votes
1answer
4k views
Haar Cascades vs. LBP Cascades in Face Detection
I have been experimenting with face detection in OpenCV (Open Source Computer Vision Library), and found that one could use Haar cascades to detect faces as there are several of them provided with ...
4
votes
2answers
2k views
Python OpenCV SVM implementation
So I have a matrix with my sample images (all turned into vectors) which was run trough PCA/LDA, and a vector which denotes the class each images belongs to. Now I want to use the OpenCV SVM class to ...
0
votes
2answers
882 views
Haar create sample parse error
I am creating samples in opencv 2.1 by "opencv_createsamples.exe", but I've got parse error on line 1.
File positives.txt contains:
c:\haar\Positives\PosImg_0.jpg 1 175,120,275,240
...
1
vote
1answer
186 views
Identifying occluded texture patches from a large dataset
My hypothetical task at hand is to be able to from a single from above picture of a geometrically undistorted beverage can, give its classification (e.g. brand & name of beverage). No segmentation ...
4
votes
3answers
2k views
Parameters of opencv_traincascade
I've been using the old implementation of OpenCV's haartraining for quite some time. Now, after finally moving to OpenCV 2.3, I'm wondering how to set parameters like I did with the old ...
4
votes
1answer
1k views
OpenCV - Haar classifier for long objects with different angles
I have used Haar classifier with OpenCV before succesfully. Unfortunately it seems to work only on square objects and fixed angles (i.e. faces). However I need to find "long" (rectangular) objects ...
1
vote
2answers
1k views
What's inside a haar cascade classifier in Open CV computer vision?
I need to translate an .xml OpenCV haar cascade to a txt file.
(Open CV has a Haar Feature-based Cascade Classifier for Object Detection.)
So I need to understand the xml.
I'm wondering what are the ...
4
votes
3answers
918 views
Advice for classifying symbols/images
I am working on a project that requires classification of characters and symbols (basically OCR that needs to handle single ASCII characters and symbols such as music notation). I am working with ...
4
votes
9answers
915 views
Image Classification - Detecting Floor Plans
I am working on a real estate website and i would like to write a program that
can figure out(classify) if an image is a floor plan or a company logo.
Since i am writing in php i will prefer a php ...
