visual c++ - how to calculate the HOGDescriptor for specified locations in opencv -
I am trying to find a hog descriptor for human activity recognition, how to do the HOG descriptor for the specified location using opencv
Actually, there is no inbuilt functionality for this. You should remove the area yourself and give it as a "matte" type for the hog.compute () method.
Hint: Study OpenCV "hog.detectMultiScale" method that does the same thing.
Comments
Post a Comment