Project

General

Profile

Wiki » History » Version 5

« Previous - Version 5/10 (diff) - Next » - Current version
Petri Partanen, 19/05/2020 16:02


Wiki

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))
```

Evaluated software

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/

Mokka - Motion kinematic & kinetic analyzer
Professional software for motion analysis. Requires C3D files, thus not applicable to our project.

MOtoNMS
https://github.com/RehabEngGroup/MOtoNMS

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