Diff of /datasets/OUMVLP/README.md [000000] .. [fd9ef4]

Switch to unified view

a b/datasets/OUMVLP/README.md
1
# OUMVLP
2
Step1: Download URL: http://www.am.sanken.osaka-u.ac.jp/BiometricDB/GaitMVLP.html
3
4
Step2: Unzip the dataset, you will get a structure directory like:
5
```
6
python datasets/OUMVLP/extractor.py --input_path Path_of_OUMVLP-base --output_path Path_of_OUMVLP-raw --password Given_Password
7
```  
8
9
- Original
10
    ```
11
    OUMVLP-raw
12
        Silhouette_000-00 (view-sequence)
13
            00001 (subject)
14
                0001.png (frame)
15
                0002.png (frame)
16
                ......
17
            00002
18
                0001.png (frame)
19
                0002.png (frame)
20
                ......
21
            ......
22
        Silhouette_000-01
23
            00001
24
                0001.png (frame)
25
                0002.png (frame)
26
                ......
27
            00002
28
                0001.png (frame)
29
                0002.png (frame)
30
                ......
31
            ......
32
        Silhouette_015-00
33
            ......
34
        Silhouette_015-01
35
            ......
36
        ......
37
    ```
38
Step3-1 : To rearrange directory of OUMVLP dataset(for silhouette), turning to id-type-view structure, Run 
39
```
40
python datasets/OUMVLP/rearrange_OUMVLP.py --input_path Path_of_OUMVLP-raw --output_path Path_of_OUMVLP-rearranged
41
```  
42
Step3-2 : To rearrange directory of OUMVLP dataset(for pose), turning to id-type-view structure, Run 
43
```
44
python datasets/OUMVLP/rearrange_OUMVLP_pose.py --input_path Path_of_OUMVLP-pose --output_path Path_of_OUMVLP-pose-rearranged
45
```  
46
47
Step4-1: Transforming images to pickle file, run 
48
```
49
python datasets/pretreatment.py --input_path Path_of_OUMVLP-rearranged --output_path Path_of_OUMVLP-pkl
50
```
51
Step4-2: Transforming pose txts to pickle file, run 
52
```
53
python datasets/pretreatment.py --input_path Path_of_GREW-pose-rearranged --output_path Path_of_GREW-pose-pkl --pose --dataset GREW
54
```
55
gernerate the 17 Number of Pose Points Format from 18 Number of Pose Points
56
```
57
python datasets/OUMVLP/rearrange_OUMVLP_pose.py --input_path Path_of_OUMVLP-pose18 --output_path Path_of_OUMVLP-pose17
58
```
59
60
- Processed
61
    ```
62
    OUMVLP-pkl
63
        00001 (subject)
64
            00 (sequence)
65
                000 (view)
66
                    000.pkl (contains all frames)
67
                015 (view)
68
                    015.pkl (contains all frames)
69
                ...
70
            01 (sequence)
71
                000 (view)
72
                    000.pkl (contains all frames)
73
                015 (view)
74
                    015.pkl (contains all frames)
75
                ......
76
        00002 (subject)
77
            ......
78
        ......
79
    ```