Wiki » History » Version 7
« Previous -
Version 7/10
(diff) -
Next » -
Current version
Petri Partanen, 19/05/2020 17:32
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))
```
Meeting notes¶
19.5.2020¶
Important:
Look into optical flows! There's speed patterns which cluster and thus can be used to classify gait.
In the project report we have to be able to answer the following questions:
- state why the particular method was selected
- what we compared to
- perfomance in the literature
- we have to know what we are talking about. for example, in case of neural network cnn and the whole architecture
- consider different metrics/parameters to perform the abnormal and normal gait classification
- study which parameters yield the best classification results
- from skeleton, extract features, then use classical machine learning (knn, svm, etc) to perform the classification.
- Is there a specific programming language that perform better in this domain? No, we can choose any programming language. Matlab and Python might be the most commonly used.
- If we were to choose the neural network to skeleton approach, how could we extract gait parameters and features from the skeelton? The shared research paper provides inspiration how to extract typical bioimechanical gait features.