HOG descriptor for object detection

I would like to know if there is an implementation of the HOG descriptor for objects like "cars" and NOT for Human in MATLAB?

But in the case, only for Man, can you direct me to this code and give me such VIEWS to improve the code that will be used for "objects such as cars or motorbikes".

+5
source share
4 answers

Now in the toolbar of the Vision Vision system there is an extractHOGFeatures function .

+2
source

HOG - , , . , , , .. , . Opencv . matlab, .

+1

, VLFeat Toolbox, HOG, HOG , , "im.jpg", , HOG, hog = vl_hog("im.jpg",8,'verbose') 8 - ur, .

 imhog = vl_hog('render',hog,'verbose')

+1

Matlab, Dalal. .

http://hi.baidu.com/fpmaldfoamdfmze/item/4f3b3ac881affcb00c0a7b11 , !

HOG . ( ) .

, , HOG . "". "". . . , ,

cellpw, cellph: .

nblockw, nblockh: x y .

nthet: .

issigned:

overlap: ,

isglobalinterpolate:

normmethod:

-

cellpw = 8; cellph = 8; nblockw = 2; nblockh = 2; nthet = 9; = 0,5; isglobalinterpolate = 'localinterpolate'; unsigned = 'unsigned'; normmethod = 'l2hys';

Matlab - -

I = imread('car.png');
Ig = rgb2gray(I);
F = hogcalculator(Ig, 8, 8, 2, 2, 9, 0.5,'localinterpolate', 'unsigned', 'l2hys');

/ F .

, , () ( ) . SVM . libsvm -

http://www.csie.ntu.edu.tw/~cjlin/libsvm/

, . SVM, . , , , . nthet, cellpw cellph. !

0

All Articles