I have code:
import cv2
hog = cv2.HOGDescriptor()
im = cv2.imread(sample)
h = hog.compute(im)
I want to have output is size 30720. Can you teach me. Thanks!
I have code:
import cv2
hog = cv2.HOGDescriptor()
im = cv2.imread(sample)
h = hog.compute(im)
I want to have output is size 30720. Can you teach me. Thanks!