Skip to content

Instantly share code, notes, and snippets.

View moaminsharifi's full-sized avatar
🎆
HARDCODE (not CORE)

Amin Sharifi moaminsharifi

🎆
HARDCODE (not CORE)
View GitHub Profile
@moaminsharifi
moaminsharifi / hog.py
Created June 4, 2020 05:08 — forked from aishwarya-singh25/hog.py
HOG feature Descriptor
#creating hog features
fd, hog_image = hog(resized_img, orientations=9, pixels_per_cell=(8, 8),
cells_per_block=(2, 2), visualize=True, multichannel=True)