Wiki » History » Version 5
Petri Partanen, 19/05/2020 16:02
1 | 1 | Petri Partanen | h1. Wiki |
---|---|---|---|
2 | 1 | Petri Partanen | |
3 | 4 | Petri Partanen | h2. Promising |
4 | 4 | Petri Partanen | https://github.com/marian-margeta/gait-recognition |
5 | 5 | Petri Partanen | |
6 | 4 | Petri Partanen | ``` |
7 | 4 | Petri Partanen | $ python dummy_pose_estimation.py |
8 | 4 | Petri Partanen | Traceback (most recent call last): |
9 | 4 | Petri Partanen | File "dummy_pose_estimation.py", line 5, in <module> |
10 | 4 | Petri Partanen | from scipy.misc import imresize, imread |
11 | 4 | Petri Partanen | ImportError: cannot import name 'imresize' |
12 | 4 | Petri Partanen | ``` |
13 | 4 | Petri Partanen | |
14 | 4 | Petri Partanen | Solved by using ImageIO: |
15 | 4 | Petri Partanen | ``` |
16 | 4 | Petri Partanen | import imageio |
17 | 4 | Petri Partanen | from PIL import Image |
18 | 4 | Petri Partanen | |
19 | 4 | Petri Partanen | from human_pose_nn import HumanPoseIRNetwork |
20 | 4 | Petri Partanen | |
21 | 4 | Petri Partanen | net_pose = HumanPoseIRNetwork() |
22 | 4 | Petri Partanen | net_pose.restore('models/MPII+LSP.ckpt') |
23 | 4 | Petri Partanen | |
24 | 4 | Petri Partanen | img = imageio.imread('images/patient.png') |
25 | 4 | Petri Partanen | img = Image.fromarray(img).resize((299, 299)) |
26 | 4 | Petri Partanen | ``` |
27 | 4 | Petri Partanen | |
28 | 4 | Petri Partanen | |
29 | 2 | Petri Partanen | h2. Evaluated software |
30 | 2 | Petri Partanen | |
31 | 2 | Petri Partanen | h3. DLTdv8 |
32 | 2 | Petri Partanen | 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. |
33 | 2 | Petri Partanen | https://bitbucket.org/thedrick/dltdv/src/default/ |
34 | 2 | Petri Partanen | |
35 | 2 | Petri Partanen | h3. Mokka - Motion kinematic & kinetic analyzer |
36 | 2 | Petri Partanen | Professional software for motion analysis. Requires C3D files, thus not applicable to our project. |
37 | 2 | Petri Partanen | |
38 | 2 | Petri Partanen | h3. MOtoNMS |
39 | 2 | Petri Partanen | https://github.com/RehabEngGroup/MOtoNMS |
40 | 2 | Petri Partanen | |
41 | 3 | Petri Partanen | h2. To be evaluated: |
42 | 2 | Petri Partanen | https://www.pyimagesearch.com/2015/05/25/basic-motion-detection-and-tracking-with-python-and-opencv/ |
43 | 2 | Petri Partanen | https://github.com/gsimchoni/mocap |
44 | 2 | Petri Partanen | https://github.com/gsimchoni/mocap/blob/master/R/readAMC.R |
45 | 2 | Petri Partanen | https://github.com/browarsoftware/RMoCap |