Comparing a saved movement with other movement with Kinect

后端 未结 2 1959
天命终不由人
天命终不由人 2020-12-08 17:41

I need to develop an application where a user (physiotherapist) will perform a movement in front of the Kinect, I\'ll write the data movement in the database and then the pa

2条回答
  •  有刺的猬
    2020-12-08 18:12

    First of all remember that people are diffrent. Every person has diffrent height, width, weight, diffrent bones length etc etc

    You`re code probably will never work cause of this.

    Secondly you need to think more geometrically. Don`t think about points only, think with vectors, their directions. Each movement is movent of some vectors in some directions. Then the proportion. You need to configure application for each user.

    You have some pattern. The patter is your physiotherapist. You need to remember not only his movements but also his body. Arm length, leg length, distances etc. Each user that will be using your app also need to me mesured. Having all this data you can compare movement by scaling sizes and comparing directions of movent

    Of course remember that there are some very simple moves like for example. They can be recognized by simple mathematic by checking actual position of the hand and checking direction of the movement. You need for this 3 control points and you`re at home :)

    Gesture recognizing isn`t a simple thing

提交回复
热议问题