First time here? Check out the FAQ!

Ask Your Question
0

HOGDescriptor problem

asked Sep 16 '13

casbelt gravatar image

updated Sep 16 '13

berak gravatar image

Hi! I'm trying to use HOGDescriptor class to get the points of an image and after this use SMV to classify them.

The main problem for me is that if I just do this:

vector<Point> encontrados(50);
HOGDescriptor hog;
hog.detect(img,encontrados);

"encontrados" doesn't have anything.

I think that it may be caused by my images size. They are 40x40 and the default parameters of HOGDescriptor are 64x128. So I tried to declare it before with parameters this way:

Size win_size=Size(40, 40);
HOGDescriptor hog(win_size);

But my program crash: error: no matching function for call to ‘cv::HOGDescriptor::HOGDescriptor(cv::Size&)’|

According to http://docs.opencv.org/modules/gpu/doc/object_detection.html?highlight=hog#gpu::HOGDescriptor this error have no sense.

Can anyone help me? What I'm doing bad? Thanks in advance.

Preview: (hide)

1 answer

Sort by » oldest newest most voted
2

answered Sep 16 '13

updated Sep 16 '13

The constructor have to be used like that:

    HOGDescriptor hog = HOGDescriptor(Size(64, 128), Size(16, 16),Size(8, 8),Size(8, 8), 9,DEFAULT_WIN_SIGMA,0.2, true,DEFAULT_NLEVELS);//custom parameters
    HOGDescriptor hog; //create with default parameters.

    hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector());//Dont forget to load SVMDetector:

And use detect multiscale, not just detect:

    vector<Rect> found;
    hog.detectMultiScale(img, found, 0, Size(8,8), Size(32,32), 1.05, 2);

p.p.
Look at peopledetect.cpp in sample dir of OpenCV.

Preview: (hide)

Comments

Hi first of all thank you. In the first declaration (custom parameters) "DEFAULT_WIN_SIGMA" and "DEFAULT_NLEVELS" give me an error (if I ignore this part it works fine).

casbelt gravatar imagecasbelt (Sep 17 '13)edit

Question Tools

Stats

Asked: Sep 16 '13

Seen: 2,453 times

Last updated: Sep 16 '13