-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deformable Parts Model #85
base: master
Are you sure you want to change the base?
Conversation
Add functions similar to Ramanan's paper original code.
Additionally, add (temp) auxiliary functions for verifying that is similar to the original Ramanan code.
Additionally, sdd the __init__.py in the dpm folder.
Conflicts: setup.py
@kritsong Add me as a collaborator to your menpofit fork 😄 |
@@ -6,6 +6,7 @@ requirements: | |||
build: | |||
- python | |||
- setuptools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Numpy is required - - numpy 1.10.*
scales[j + m_inter] = 0.5 * scales[j] | ||
|
||
feats_np = {} # final feats (keep only numpy array, get rid of the image) | ||
for k, val in scales.iteritems(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iteritems
doesn't exist in Python 3
Amazing work @kritsong ! |
…mporarily consume more memory
Conflicts: setup.py
Conflicts: setup.py
Conflicts: setup.py
Can one of the admins verify this patch? |
This is the first version of Deformable Parts Model(DPM) moved into menpo by converting the publicly available code from matlab.
DPM represents objects using a collection of parts usually represented by rectangle boxes. Each part captures local appearance of an object normally using Histogram of Gradient(HOG) feature, and the configuration of their connections are spring-like, tree structure.
The code consist of 3 main files:
TODO: