Ask Your Question

sabariaug23's profile - activity

2017-12-01 04:01:33 -0600 received badge  Popular Question (source)
2014-08-06 23:28:37 -0600 commented answer Bag of Words - SVM Classification - reg

How can I decide the Dictionary Size? My application is object Detection & Recognition from a wild Database. Which may include thousands of object classes.

2014-08-06 01:20:42 -0600 received badge  Student (source)
2014-08-06 01:14:07 -0600 asked a question Bag of Words - SVM Classification - reg

I'm doing an Object detection & Recognition concept in OpenCV C++.

I'm using the BOW API available in OpenCV.

The classifier used is SVM.

Number of Object classes was set to 20. Number of Images for training was set to 50.

I'm using SVM Classifier.

The code is here. http://www.codeproject.com/Articles/619039/Bag-of-Features-Descriptor-on-SIFT-Features-with-O

But the classification rate is poor. How can I improve?

How to select number of images for training for each object?

How to select the dictionary size?

2014-08-04 05:47:17 -0600 asked a question Expression must be modifiable lvalue - c++ Error

I got the error when I execute the following code.

int *p;
p = (int *)malloc(128*sizeof(int *));
for (int i = 0; i < 128; i++)
{
    (*p + i) = 0;
}

Expression must be modifiable lvalue

2014-08-01 01:28:55 -0600 received badge  Supporter (source)
2014-08-01 01:28:48 -0600 received badge  Scholar (source)
2014-08-01 01:02:00 -0600 asked a question Random Number Generation regarding

I had generated a random number using the following code in OpenCV 2.4.8.

RNG rng;
cout << rng.uniform(0.0,1.0);

It keeps on generating the same number. Why?