Where can I find the caffe models for the Openpose sample of the dnn module?
I tried to load the models from https://github.com/CMU-Perceptual-Com... but the example code fails at assert(len(BODY_PARTS) == out.shape[1])
Am I using the right models? In the example a simplified model is mentioned. Does this mean that I need to load this simplified model? If this is the case, where can I find it?
hehe, you're exactly the person, i've been looking for, playing with the very same thing !
are you using the COCO , or the MPI model ?
(in the case of COCO, it seems, you have to use
out = net.forward("Mconv7_stage6_L2")
(that is, stop before the final Concat layer) , else you get 57 heatmaps instead of the expected 19we'll have to find out, what there is in the other 38 heatmaps, and how to make use of those ;)
i'm somehow suspecting, that the additional 38 heatmaps are the hand parts , but i'm not sure.