I would like to compare my poses obtained from a webcam to that of a pose obtained from an image. The base code for the pose estimation is from: https://github.com/opencv/opencv/blob/master/samples/dnn/openpose.py
How can I compare my own poses live-time with an image's pose, and return True if the two poses match within some threshold?
For instance, if I put my arms in a certain up to match an image of someone doing the same, how could I get a result of how close the match is?
What would be a way of doing this / where could I find more information on this?