Wiki » History » Version 4
Version 3 (Petri Partanen, 13/05/2020 20:17) → Version 4/10 (Petri Partanen, 19/05/2020 16:02)
h1. Wiki
h2. Promising
https://github.com/marian-margeta/gait-recognition
```
$ python dummy_pose_estimation.py
Traceback (most recent call last):
File "dummy_pose_estimation.py", line 5, in <module>
from scipy.misc import imresize, imread
ImportError: cannot import name 'imresize'
```
Solved by using ImageIO:
```
import imageio
from PIL import Image
from human_pose_nn import HumanPoseIRNetwork
net_pose = HumanPoseIRNetwork()
net_pose.restore('models/MPII+LSP.ckpt')
img = imageio.imread('images/patient.png')
img = Image.fromarray(img).resize((299, 299))
```
h2. Evaluated software
h3. DLTdv8
MATLAB program to perform motion analysis. Promising but automatic point tracking didn't work. Neural network point tracker feature of the software was not evaluated.
https://bitbucket.org/thedrick/dltdv/src/default/
h3. Mokka - Motion kinematic & kinetic analyzer
Professional software for motion analysis. Requires C3D files, thus not applicable to our project.
h3. MOtoNMS
https://github.com/RehabEngGroup/MOtoNMS
h2. To be evaluated:
https://www.pyimagesearch.com/2015/05/25/basic-motion-detection-and-tracking-with-python-and-opencv/
https://github.com/gsimchoni/mocap
https://github.com/gsimchoni/mocap/blob/master/R/readAMC.R
https://github.com/browarsoftware/RMoCap
h2. Promising
https://github.com/marian-margeta/gait-recognition
```
$ python dummy_pose_estimation.py
Traceback (most recent call last):
File "dummy_pose_estimation.py", line 5, in <module>
from scipy.misc import imresize, imread
ImportError: cannot import name 'imresize'
```
Solved by using ImageIO:
```
import imageio
from PIL import Image
from human_pose_nn import HumanPoseIRNetwork
net_pose = HumanPoseIRNetwork()
net_pose.restore('models/MPII+LSP.ckpt')
img = imageio.imread('images/patient.png')
img = Image.fromarray(img).resize((299, 299))
```
h2. Evaluated software
h3. DLTdv8
MATLAB program to perform motion analysis. Promising but automatic point tracking didn't work. Neural network point tracker feature of the software was not evaluated.
https://bitbucket.org/thedrick/dltdv/src/default/
h3. Mokka - Motion kinematic & kinetic analyzer
Professional software for motion analysis. Requires C3D files, thus not applicable to our project.
h3. MOtoNMS
https://github.com/RehabEngGroup/MOtoNMS
h2. To be evaluated:
https://www.pyimagesearch.com/2015/05/25/basic-motion-detection-and-tracking-with-python-and-opencv/
https://github.com/gsimchoni/mocap
https://github.com/gsimchoni/mocap/blob/master/R/readAMC.R
https://github.com/browarsoftware/RMoCap