Qnancy commited on
Commit
6ccbb3a
·
verified ·
1 Parent(s): 310b910

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. external/Metric3D/mono/configs/_base_/models/backbones/convnext_large.py +16 -0
  2. external/Metric3D/mono/configs/_base_/models/backbones/convnext_tiny.py +16 -0
  3. external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_giant2_reg.py +7 -0
  4. external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_large.py +7 -0
  5. external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_large_reg.py +7 -0
  6. external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_small_reg.py +7 -0
  7. external/Metric3D/mono/configs/_base_/models/encoder_decoder/convnext_tiny.hourglassdecoder.py +10 -0
  8. external/Metric3D/mono/utils/__pycache__/__init__.cpython-310.pyc +0 -0
  9. external/Metric3D/mono/utils/__pycache__/avg_meter.cpython-310.pyc +0 -0
  10. external/Metric3D/mono/utils/__pycache__/comm.cpython-310.pyc +0 -0
  11. external/Metric3D/training/data_server_info/__init__.py +2 -0
  12. external/Metric3D/training/data_server_info/annos_test_matterport3d_example.json +1 -0
  13. external/Metric3D/training/data_server_info/annos_test_normal_nyu_example.json +1 -0
  14. external/Metric3D/training/data_server_info/pretrained_weight.py +21 -0
  15. external/Metric3D/training/data_server_info/public_datasets.py +416 -0
  16. external/Metric3D/training/kitti_json_files/eigen_test.json +0 -0
  17. external/Metric3D/training/kitti_json_files/eigen_test.txt +697 -0
  18. external/Metric3D/training/kitti_json_files/eigen_train.txt +0 -0
  19. external/Metric3D/training/kitti_json_files/eigen_val.txt +1776 -0
  20. external/Metric3D/training/kitti_json_files/generate_json.py +85 -0
  21. external/Metric3D/training/mono/__init__.py +0 -0
  22. external/Metric3D/training/mono/datasets/__base_dataset__.py +586 -0
  23. external/Metric3D/training/mono/datasets/__init__.py +38 -0
  24. external/Metric3D/training/mono/datasets/any_dataset.py +152 -0
  25. external/Metric3D/training/mono/datasets/argovers2_dataset.py +33 -0
  26. external/Metric3D/training/mono/datasets/blendedmvg_omni_dataset.py +32 -0
  27. external/Metric3D/training/mono/datasets/cityscapes_dataset.py +33 -0
  28. external/Metric3D/training/mono/datasets/ddad_dataset.py +37 -0
  29. external/Metric3D/training/mono/datasets/diml_dataset.py +53 -0
  30. external/Metric3D/training/mono/datasets/diode_dataset.py +273 -0
  31. external/Metric3D/training/mono/datasets/drivingstereo_dataset.py +35 -0
  32. external/Metric3D/training/mono/datasets/dsec_dataset.py +35 -0
  33. external/Metric3D/training/mono/datasets/fisheye_dataset.py +76 -0
  34. external/Metric3D/training/mono/datasets/hm3d_dataset.py +35 -0
  35. external/Metric3D/training/mono/datasets/hypersim_dataset.py +141 -0
  36. external/Metric3D/training/mono/datasets/ibims_dataset.py +92 -0
  37. external/Metric3D/training/mono/datasets/kitti_dataset.py +190 -0
  38. external/Metric3D/training/mono/datasets/lyft_dataset.py +34 -0
  39. external/Metric3D/training/mono/datasets/matterport3d_dataset.py +44 -0
  40. external/Metric3D/training/mono/datasets/nuscenes_dataset.py +34 -0
  41. external/Metric3D/training/mono/datasets/nyu_dataset.py +195 -0
  42. external/Metric3D/training/mono/datasets/pandaset_dataset.py +36 -0
  43. external/Metric3D/training/mono/datasets/replica_dataset.py +35 -0
  44. external/Metric3D/training/mono/datasets/scannet_dataset.py +295 -0
  45. external/Metric3D/training/mono/datasets/taskonomy_dataset.py +190 -0
  46. external/Metric3D/training/mono/datasets/uasol_dataset.py +52 -0
  47. external/Metric3D/training/mono/datasets/virtualkitti_dataset.py +65 -0
  48. external/Metric3D/training/mono/datasets/waymo_dataset.py +34 -0
  49. external/Metric3D/training/mono/tools/test.py +165 -0
  50. external/Metric3D/training/mono/tools/train.py +254 -0
external/Metric3D/mono/configs/_base_/models/backbones/convnext_large.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #_base_ = ['./_model_base_.py',]
2
+
3
+ #'https://download.openmmlab.com/mmclassification/v0/convnext/downstream/convnext-large_3rdparty_in21k_20220301-e6e0ea0a.pth'
4
+ model = dict(
5
+ #type='EncoderDecoderAuxi',
6
+ backbone=dict(
7
+ type='convnext_large',
8
+ pretrained=True,
9
+ in_22k=True,
10
+ out_indices=[0, 1, 2, 3],
11
+ drop_path_rate=0.4,
12
+ layer_scale_init_value=1.0,
13
+ checkpoint='data/pretrained_weight_repo/convnext/convnext_large_22k_1k_384.pth',
14
+ prefix='backbones.',
15
+ out_channels=[192, 384, 768, 1536]),
16
+ )
external/Metric3D/mono/configs/_base_/models/backbones/convnext_tiny.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #_base_ = ['./_model_base_.py',]
2
+
3
+ #'https://download.openmmlab.com/mmclassification/v0/convnext/downstream/convnext-large_3rdparty_in21k_20220301-e6e0ea0a.pth'
4
+ model = dict(
5
+ #type='EncoderDecoderAuxi',
6
+ backbone=dict(
7
+ type='convnext_tiny',
8
+ pretrained=True,
9
+ in_22k=True,
10
+ out_indices=[0, 1, 2, 3],
11
+ drop_path_rate=0.4,
12
+ layer_scale_init_value=1.0,
13
+ checkpoint='',
14
+ prefix='backbones.',
15
+ out_channels=[96, 192, 384, 768]),
16
+ )
external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_giant2_reg.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ model = dict(
2
+ backbone=dict(
3
+ type='vit_giant2_reg',
4
+ prefix='backbones.',
5
+ out_channels=[1536, 1536, 1536, 1536],
6
+ drop_path_rate = 0.0),
7
+ )
external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_large.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ model = dict(
2
+ backbone=dict(
3
+ type='vit_large',
4
+ prefix='backbones.',
5
+ out_channels=[1024, 1024, 1024, 1024],
6
+ drop_path_rate = 0.0),
7
+ )
external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_large_reg.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ model = dict(
2
+ backbone=dict(
3
+ type='vit_large_reg',
4
+ prefix='backbones.',
5
+ out_channels=[1024, 1024, 1024, 1024],
6
+ drop_path_rate = 0.0),
7
+ )
external/Metric3D/mono/configs/_base_/models/backbones/dino_vit_small_reg.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ model = dict(
2
+ backbone=dict(
3
+ type='vit_small_reg',
4
+ prefix='backbones.',
5
+ out_channels=[384, 384, 384, 384],
6
+ drop_path_rate = 0.0),
7
+ )
external/Metric3D/mono/configs/_base_/models/encoder_decoder/convnext_tiny.hourglassdecoder.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # model settings
2
+ _base_ = ['../backbones/convnext_tiny.py',]
3
+ model = dict(
4
+ type='DensePredModel',
5
+ decode_head=dict(
6
+ type='HourglassDecoder',
7
+ in_channels=[96, 192, 384, 768],
8
+ decoder_channel=[64, 64, 128, 256],
9
+ prefix='decode_heads.'),
10
+ )
external/Metric3D/mono/utils/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (171 Bytes). View file
 
external/Metric3D/mono/utils/__pycache__/avg_meter.cpython-310.pyc ADDED
Binary file (11.4 kB). View file
 
external/Metric3D/mono/utils/__pycache__/comm.cpython-310.pyc ADDED
Binary file (9.68 kB). View file
 
external/Metric3D/training/data_server_info/__init__.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ from .public_datasets import *
2
+ from .pretrained_weight import *
external/Metric3D/training/data_server_info/annos_test_matterport3d_example.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"files": [{"meta_data": "Matterport3D/data/2n8kARJN3HM/2n8kARJN3HM/meta/add134cc07e64d9d8524d0d9f96c4180_i1_5.pkl"}, {"meta_data": "Matterport3D/data/SN83YJsR3w2/SN83YJsR3w2/meta/4a87c9150e8442a1b8abc51ed5073ca0_i1_4.pkl"}, {"meta_data": "Matterport3D/data/Uxmj2M2itWa/Uxmj2M2itWa/meta/0cef156ab53041da97dd6a70d3d5af0b_i1_4.pkl"}, {"meta_data": "Matterport3D/data/yqstnuAEVhm/yqstnuAEVhm/meta/e9b4d8e951cb4712b3905c8f4c4dabb5_i2_1.pkl"}, {"meta_data": "Matterport3D/data/dhjEzFoUFzH/dhjEzFoUFzH/meta/3d1a8e5759a14f2a81e5d6e2f5045eca_i2_2.pkl"}]}
external/Metric3D/training/data_server_info/annos_test_normal_nyu_example.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"files": [{"rgb": "NYU/nyu_normal/official/test/0000.png", "depth": "NYU/nyu_normal/official/test/0000_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0000_n.png"}, {"rgb": "NYU/nyu_normal/official/test/0001.png", "depth": "NYU/nyu_normal/official/test/0001_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0001_n.png"}, {"rgb": "NYU/nyu_normal/official/test/0008.png", "depth": "NYU/nyu_normal/official/test/0008_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0008_n.png"}, {"rgb": "NYU/nyu_normal/official/test/0013.png", "depth": "NYU/nyu_normal/official/test/0013_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0013_n.png"}, {"rgb": "NYU/nyu_normal/official/test/0014.png", "depth": "NYU/nyu_normal/official/test/0014_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0014_n.png"}, {"rgb": "NYU/nyu_normal/official/test/0015.png", "depth": "NYU/nyu_normal/official/test/0015_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0015_n.png"}, {"rgb": "NYU/nyu_normal/official/test/0016.png", "depth": "NYU/nyu_normal/official/test/0016_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0016_n.png"}, {"rgb": "NYU/nyu_normal/official/test/0017.png", "depth": "NYU/nyu_normal/official/test/0017_d.png", "cam_in": [518.8579, 519.4691, 325.58245, 253.73617], "normal": "NYU/nyu_normal/official/test/0017_n.png"}]}
external/Metric3D/training/data_server_info/pretrained_weight.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ db_info={}
2
+
3
+
4
+
5
+ db_info['checkpoint']={
6
+ 'db_root': 'tbd_weight_root', # Config your weight root!
7
+
8
+ # pretrained weight for vit
9
+ 'vit_small_reg': 'vit/dinov2_vits14_reg4_pretrain.pth',
10
+ 'vit_large_reg': 'vit/dinov2_vitl14_reg4_pretrain.pth',
11
+ 'vit_giant2_reg': 'vit/dinov2_vitg14_reg4_pretrain.pth',
12
+
13
+ 'vit_large': 'vit/dinov2_vitl14_pretrain.pth',
14
+
15
+ # pretrained weight for convnext
16
+ 'convnext_tiny': 'convnext/convnext_tiny_22k_1k_384.pth',
17
+ 'convnext_small': 'convnext/convnext_small_22k_1k_384.pth',
18
+ 'convnext_base': 'convnext/convnext_base_22k_1k_384.pth',
19
+ 'convnext_large': 'convnext/convnext_large_22k_1k_384.pth',
20
+ 'convnext_xlarge': 'convnext/convnext_xlarge_22k_1k_384_ema.pth',
21
+ }
external/Metric3D/training/data_server_info/public_datasets.py ADDED
@@ -0,0 +1,416 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ db_info={}
3
+
4
+
5
+ #### DDAD Dataset
6
+ # RGBD, consecutive frames, and ring cameras annotations
7
+ db_info['DDAD']={
8
+ 'db_root': 'tbd_data_root', # Config your data root!
9
+ 'data_root': 'DDAD',
10
+ 'semantic_root': 'DDAD',
11
+ 'meta_data_root': 'DDAD',
12
+ 'train_annotations_path': 'DDAD/DDAD/annotations/train.json',
13
+ 'test_annotations_path': 'DDAD/DDAD/annotations/test.json',
14
+ 'val_annotations_path': 'DDAD/DDAD/annotations/val.json',
15
+ }
16
+
17
+ #### Mapillary Planet Scale Dataset
18
+ # Single frame RGBD annotations
19
+ db_info['Mapillary_PSD']={
20
+ 'db_root': 'tbd_data_root',
21
+ 'data_root': 'Mapillary_PSD',
22
+ 'semantic_root': 'Mapillary_PSD',
23
+ 'train_annotations_path': 'Mapillary_PSD/Mapillary_PSD/annotations/train.json',
24
+ 'test_annotations_path': 'Mapillary_PSD/Mapillary_PSD/annotations/test.json',
25
+ 'val_annotations_path': 'Mapillary_PSD/Mapillary_PSD/annotations/val.json',
26
+ }
27
+
28
+ #### Cityscapes dataset
29
+ # Cityscapes sequence dataset, RGBD and consecutive frames annotations
30
+ db_info['Cityscapes_sequence'] = {
31
+ 'db_root': 'tbd_data_root',
32
+ 'data_root': 'Cityscapes_sequence',
33
+ 'semantic_root': 'Cityscapes_sequence',
34
+ 'train_annotations_path': 'Cityscapes_sequence/Cityscapes_sequence/annotations/train.json',
35
+ 'test_annotations_path': 'Cityscapes_sequence/Cityscapes_sequence/annotations/test.json',
36
+ 'val_annotations_path': 'Cityscapes_sequence/Cityscapes_sequence/annotations/val.json',
37
+ }
38
+ # Cityscapes extra dataset, RGBD annotations
39
+ db_info['Cityscapes_trainextra'] = {
40
+ 'db_root': 'tbd_data_root',
41
+ 'data_root': 'Cityscapes_trainextra',
42
+ 'train_annotations_path': 'Cityscapes_trainextra/Cityscapes_trainextra/annotations/train.json',
43
+ 'test_annotations_path': 'Cityscapes_trainextra/Cityscapes_trainextra/annotations/test.json',
44
+ 'val_annotations_path': 'Cityscapes_trainextra/Cityscapes_trainextra/annotations/val.json',
45
+ }
46
+ db_info['Cityscapes_sequence_test'] = {
47
+ 'db_root': 'tbd_data_root',
48
+ 'data_root': 'Cityscapes_sequence',
49
+ 'train_annotations_path': 'Cityscapes_sequence/Cityscapes_sequence/annotations/train.json',
50
+ 'test_annotations_path': 'Cityscapes_sequence/Cityscapes_sequence/annotations/test.json',
51
+ 'val_annotations_path': 'Cityscapes_sequence/Cityscapes_sequence/annotations/test.json',
52
+ }
53
+
54
+ #### Lyft dataset
55
+ # Lyft dataset, RGBD, neighbouring cameras, and consecutive frames annotations
56
+ db_info['Lyft'] = {
57
+ 'db_root': 'tbd_data_root',
58
+ 'data_root': 'Lyft',
59
+ 'depth_root': 'Lyft',
60
+ 'meta_data_root': 'Lyft',
61
+ 'semantic_root': 'Lyft',
62
+ 'train_annotations_path': 'Lyft/Lyft/annotations/train.json',
63
+ 'test_annotations_path': 'Lyft/Lyft/annotations/test.json',
64
+ 'val_annotations_path': 'Lyft/Lyft/annotations/val.json',
65
+ }
66
+ # Lyft dataset, RGBD for ring cameras
67
+ db_info['Lyft_ring'] = {
68
+ 'db_root': 'tbd_data_root',
69
+ 'data_root': 'Lyft',
70
+ 'depth_root': 'Lyft',
71
+ 'meta_data_root': 'Lyft',
72
+ 'train_annotations_path': 'Lyft/Lyft/annotations/train.json',
73
+ 'test_annotations_path': 'Lyft/Lyft/annotations/test.json',
74
+ 'val_annotations_path': 'Lyft/Lyft/annotations/val.json',
75
+ }
76
+
77
+ #### DSEC dataset
78
+ # DSEC dataset, RGBD and consecutive frames annotaitons
79
+ db_info['DSEC'] = {
80
+ 'db_root': 'tbd_data_root',
81
+ 'data_root': 'DSEC',
82
+ 'semantic_root': 'DSEC',
83
+ 'train_annotations_path': 'DSEC/DSEC/annotations/train.json',
84
+ 'test_annotations_path': 'DSEC/DSEC/annotations/test.json',
85
+ 'val_annotations_path': 'DSEC/DSEC/annotations/val.json',
86
+ }
87
+
88
+ #### Argovers2 Dataset
89
+ # Argovers2 dataset, RGBD and neighbouring cameras annotaitons
90
+ db_info['Argovers2'] = {
91
+ 'db_root': 'tbd_data_root',
92
+ 'data_root': 'Argovers2',
93
+ 'depth_root': 'Argovers2',
94
+ 'meta_data_root': 'Argovers2',
95
+ 'train_annotations_path': 'Argovers2/Argovers2/annotations/train.json',
96
+ 'test_annotations_path': 'Argovers2/Argovers2/annotations/test.json',
97
+ 'val_annotations_path': 'Argovers2/Argovers2/annotations/val.json',
98
+ }
99
+ # Argovers2 dataset, RGBD and consecutive cameras annotaitons
100
+ db_info['Argovers2_tmpl'] = {
101
+ 'db_root': 'tbd_data_root',
102
+ 'data_root': 'Argovers2',
103
+ 'depth_root': 'Argovers2',
104
+ 'meta_data_root': 'Argovers2',
105
+ 'train_annotations_path': 'Argovers2/Argovers2/annotations/train.json',
106
+ 'test_annotations_path': 'Argovers2/Argovers2/annotations/test.json',
107
+ 'val_annotations_path': 'Argovers2/Argovers2/annotations/val.json',
108
+ }
109
+
110
+ #### DrivingStereo Dataset
111
+ # DrivingStereo dataset, RGBD annotaitons for stereo data
112
+ db_info['DrivingStereo'] = {
113
+ 'db_root': 'tbd_data_root',
114
+ 'data_root': 'DrivingStereo',
115
+ 'semantic_root': 'DrivingStereo',
116
+ 'train_annotations_path': 'DrivingStereo/DrivingStereo/annotations/train.json',
117
+ 'test_annotations_path': 'DrivingStereo/DrivingStereo/annotations/test.json',
118
+ 'val_annotations_path': 'DrivingStereo/DrivingStereo/annotations/val.json',
119
+ }
120
+ # DrivingStereo dataset, RGBD and consecutive frames annotaitons for stereo data
121
+ db_info['DrivingStereo_tmpl'] = {
122
+ 'db_root': 'tbd_data_root',
123
+ 'data_root': 'DrivingStereo',
124
+ 'semantic_root': 'DrivingStereo',
125
+ 'train_annotations_path': 'DrivingStereo/DrivingStereo/annotations/train.json',
126
+ 'test_annotations_path': 'DrivingStereo/DrivingStereo/annotations/test.json',
127
+ 'val_annotations_path': 'DrivingStereo/DrivingStereo/annotations/val.json',
128
+ }
129
+
130
+ #### DIML Dataset
131
+ # DIML dataset, RGBD annotaitons for stereo data
132
+ db_info['DIML'] = {
133
+ 'db_root': 'tbd_data_root',
134
+ 'data_root': 'DIML',
135
+ 'semantic_root': 'DIML',
136
+ 'train_annotations_path': 'DIML/DIML/anotation/train.json',
137
+ 'test_annotations_path': 'DIML/DIML/anotation/test.json',
138
+ 'val_annotations_path': 'DIML/DIML/anotation/val.json',
139
+ }
140
+
141
+ db_info['NuScenes'] = {
142
+ 'db_root': 'tbd_data_root',
143
+ 'data_root': 'NuScenes',
144
+ 'train_annotations_path': 'NuScenes/NuScenes/annotations/train.json',
145
+ 'test_annotations_path': 'NuScenes/NuScenes/annotations/test.json',
146
+ 'val_annotations_path': 'NuScenes/NuScenes/annotations/val.json',
147
+ }
148
+ db_info['NuScenes_tmpl'] = {
149
+ 'db_root': 'tbd_data_root',
150
+ 'data_root': 'NuScenes',
151
+ 'train_annotations_path': 'NuScenes/NuScenes/annotations/train.json',
152
+ 'test_annotations_path': 'NuScenes/NuScenes/annotations/test.json',
153
+ 'val_annotations_path': 'NuScenes/NuScenes/annotations/val.json',
154
+ }
155
+
156
+
157
+ # Pandaset, RGBD + tmpl dataset
158
+ db_info['Pandaset'] = {
159
+ 'db_root': 'tbd_data_root',
160
+ 'data_root': 'Pandaset',
161
+ 'meta_data_root': 'Pandaset',
162
+ 'semantic_root': 'Pandaset',
163
+ 'train_annotations_path': 'Pandaset/Pandaset/annotations/train.json',
164
+ 'test_annotations_path': 'Pandaset/Pandaset/annotations/test.json',
165
+ 'val_annotations_path': 'Pandaset/Pandaset/annotations/val.json',
166
+ }
167
+ db_info['Pandaset_ring'] = {
168
+ 'db_root': 'tbd_data_root',
169
+ 'data_root': 'Pandaset',
170
+ 'meta_data_root': 'Pandaset',
171
+ 'semantic_root': 'Pandaset',
172
+ 'train_annotations_path': 'Pandaset/Pandaset/annotations/train.json',
173
+ 'test_annotations_path': 'Pandaset/Pandaset/annotations/test.json',
174
+ 'val_annotations_path': 'Pandaset/Pandaset/annotations/val.json',
175
+ }
176
+
177
+ # UASOL, RGBD + tmpl dataset
178
+ db_info['UASOL'] = {
179
+ 'db_root': 'tbd_data_root',
180
+ 'data_root': 'UASOL_data',
181
+ 'meta_data_root': 'UASOL_data',
182
+ 'semantic_root': 'UASOL_data',
183
+ 'train_annotations_path': 'UASOL_data/UASOL_data/annotations/train.json',
184
+ 'test_annotations_path': 'UASOL_data/UASOL_data/annotations/test.json',
185
+ 'val_annotations_path': 'UASOL_data/UASOL_data/annotations/test.json',
186
+ }
187
+
188
+ # Taskonomy, RGBD dataset
189
+ db_info['Taskonomy'] = {
190
+ 'db_root': 'tbd_data_root',
191
+ 'data_root': 'Taskonomy',
192
+ 'meta_data_root': 'Taskonomy',
193
+ 'semantic_root': 'Taskonomy',
194
+ 'normal_root': 'Taskonomy',
195
+
196
+ 'train_annotations_path': 'Taskonomy/Taskonomy/annotations/train.json',
197
+ 'test_annotations_path': 'Taskonomy/Taskonomy/annotations/test.json',
198
+ 'val_annotations_path': 'Taskonomy/Taskonomy/annotations/test.json',
199
+ }
200
+
201
+ ### WebStereo Datasets
202
+ # HRWSI/Holopix dataset, RGBD and sky masks annotations
203
+ db_info['HRWSI_Holopix'] = {
204
+ 'db_root': 'tbd_data_root',
205
+ 'data_root': 'WebStereo',
206
+ 'train_annotations_path': 'WebStereo/annotations/train.json',
207
+ 'test_annotations_path': 'WebStereo/annotations/test.json',
208
+ 'val_annotations_path': 'WebStereo/annotations/val.json',
209
+ }
210
+
211
+ ### Waymo Datasets
212
+ db_info['Waymo'] = {
213
+ 'db_root': 'tbd_data_root',
214
+ 'data_root': 'Waymo',
215
+ 'meta_data_root': 'Waymo',
216
+ 'semantic_root': 'Waymo',
217
+ 'train_annotations_path': 'Waymo/Waymo/annotations/training_annos_all_filter.json',
218
+ 'test_annotations_path': 'Waymo/Waymo/annotations/testing_annos_all_filter.json',
219
+ 'val_annotations_path': 'Waymo/Waymo/annotations/validation_annos_all_filter.json',
220
+ }
221
+
222
+
223
+ # DIODE, RGBD dataset
224
+ db_info['DIODE'] = {
225
+ 'db_root': 'tbd_data_root',
226
+ 'data_root': 'DIODE',
227
+ 'depth_mask_root': 'DIODE',
228
+ 'normal_root': 'DIODE',
229
+ 'train_annotations_path': 'DIODE/DIODE/annotations/train.json',
230
+ 'test_annotations_path': 'DIODE/DIODE/annotations/test.json',
231
+ 'val_annotations_path': 'DIODE/DIODE/annotations/val.json',
232
+ }
233
+ db_info['DIODE_indoor'] = {
234
+ 'db_root': 'tbd_data_root',
235
+ 'data_root': 'DIODE',
236
+ 'depth_mask_root': 'DIODE',
237
+ 'train_annotations_path': 'DIODE/DIODE/annotations/train.json',
238
+ 'test_annotations_path': 'DIODE/DIODE/annotations/test.json',
239
+ 'val_annotations_path': 'DIODE/DIODE/annotations/val.json',
240
+ }
241
+ db_info['DIODE_outdoor'] = {
242
+ 'db_root': 'tbd_data_root',
243
+ 'data_root': 'DIODE',
244
+ 'depth_mask_root': 'DIODE',
245
+ 'normal_root': 'DIODE',
246
+ 'train_annotations_path': 'DIODE/DIODE/annotations/train.json',
247
+ 'test_annotations_path': 'DIODE/DIODE/annotations/test.json',
248
+ 'val_annotations_path': 'DIODE/DIODE/annotations/val.json',
249
+ }
250
+ db_info['ETH3D'] = {
251
+ 'db_root': 'tbd_data_root',
252
+ 'data_root': 'ETH3D',
253
+ 'depth_mask_root': 'ETH3D',
254
+ 'train_annotations_path': 'ETH3D/ETH3D/annotations/test.json',
255
+ 'test_annotations_path': 'ETH3D/ETH3D/annotations/test.json',
256
+ 'val_annotations_path': 'ETH3D/ETH3D/annotations/test.json',
257
+ }
258
+ # NYU, RGBD dataset
259
+ db_info['NYU'] = {
260
+ 'db_root': 'tbd_data_root',
261
+ 'data_root': 'NYU',
262
+ 'normal_root': 'NYU',
263
+ #'train_annotations_path': 'NYU/NYU/annotations/train.json',
264
+ 'train_annotations_path': 'NYU/NYU/annotations/train_normal.json',
265
+ #'test_annotations_path': 'NYU/NYU/annotations/test.json',
266
+ 'test_annotations_path': 'NYU/NYU/annotations/test_normal.json',
267
+ 'val_annotations_path': 'NYU/NYU/annotations/test.json',
268
+ }
269
+ # ScanNet, RGBD dataset
270
+ db_info['ScanNet'] = {
271
+ 'db_root': 'tbd_data_root',
272
+ 'data_root': 'ScanNet',
273
+ 'train_annotations_path': 'ScanNet/ScanNet/annotations/train.json',
274
+ 'test_annotations_path': 'ScanNet/ScanNet/annotations/test.json',
275
+ 'val_annotations_path': 'ScanNet/ScanNet/annotations/test.json',
276
+ }
277
+ # KITTI, RGBD dataset
278
+ db_info['KITTI'] = {
279
+ 'db_root': 'tbd_data_root',
280
+ 'data_root': '',
281
+ 'train_annotations_path': 'KITTI/KITTI/annotations/eigen_train.json',
282
+ 'test_annotations_path': 'KITTI/KITTI/annotations/eigen_test.json',
283
+ 'val_annotations_path': 'KITTI/KITTI/annotations/eigen_test.json',
284
+ }
285
+
286
+
287
+ ########### new training data
288
+ # Blended_mvg, RGBD dataset
289
+ db_info['BlendedMVG_omni'] = {
290
+ 'db_root': 'tbd_data_root',
291
+ 'data_root': 'Blended_mvg',
292
+ 'meta_data_root': 'Blended_mvg',
293
+ 'normal_root': 'Blended_mvg',
294
+ 'train_annotations_path': 'Blended_mvg/Blended_mvg/annotations/train.json',
295
+ 'test_annotations_path': 'Blended_mvg/Blended_mvg/annotations/test.json',
296
+ 'val_annotations_path': 'Blended_mvg/Blended_mvg/annotations/val.json',
297
+ }
298
+
299
+ # HM3D, RGBD dataset
300
+ db_info['HM3D'] = {
301
+ 'db_root': 'tbd_data_root',
302
+ 'data_root': 'HM3D',
303
+ 'meta_data_root': 'HM3D',
304
+ 'normal_root': 'HM3D',
305
+ 'train_annotations_path': 'HM3D/HM3d_omnidata/annotations/train.json', #',
306
+ 'test_annotations_path': 'HM3D/HM3d_omnidata/annotations/val.json',
307
+ 'val_annotations_path': 'HM3D/HM3d_omnidata/annotations/test.json',
308
+ }
309
+
310
+ # LeddarPixSet, RGBD dataset, some errors in the data
311
+ db_info['LeddarPixSet'] = {
312
+ 'db_root': 'tbd_data_root',
313
+ 'data_root': 'LeddarPixSet',
314
+ 'meta_data_root': 'LeddarPixSet',
315
+ 'train_annotations_path': 'LeddarPixSet/LeddarPixSet/annotations/train.json',
316
+ 'test_annotations_path': 'LeddarPixSet/LeddarPixSet/annotations/test.json',
317
+ 'val_annotations_path': 'LeddarPixSet/LeddarPixSet/annotations/val.json',
318
+ }
319
+
320
+ # RGBD dataset
321
+ db_info['Replica'] = {
322
+ 'db_root': 'tbd_data_root',
323
+ 'data_root': 'Replica',
324
+ 'meta_data_root': 'Replica',
325
+ 'normal_root': 'Replica',
326
+ 'train_annotations_path': 'Replica/replica/annotations/train.json',
327
+ 'test_annotations_path': 'Replica/replica/annotations/test.json',
328
+ 'val_annotations_path': 'Replica/replica/annotations/val.json',
329
+ }
330
+
331
+ db_info['Replica_gso'] = {
332
+ 'db_root': 'tbd_data_root',
333
+ 'data_root': 'Replica',
334
+ 'meta_data_root': 'Replica',
335
+ 'normal_root': 'Replica',
336
+ 'train_annotations_path': 'Replica/replica_gso/annotations/train.json',
337
+ 'test_annotations_path': 'Replica/replica_gso/annotations/test.json',
338
+ 'val_annotations_path': 'Replica/replica_gso/annotations/val.json',
339
+ }
340
+
341
+ db_info['Matterport3D'] = {
342
+ 'db_root': 'tbd_data_root',
343
+ 'data_root': 'Matterport3D',
344
+ 'meta_data_root': 'Matterport3D',
345
+ 'normal_root': 'Matterport3D',
346
+ 'train_annotations_path': 'Matterport3D/Matterport3D/annotations/train.json',
347
+ 'test_annotations_path': 'Matterport3D/Matterport3D/annotations/test.json',
348
+ 'val_annotations_path': 'Matterport3D/Matterport3D/annotations/test.json',
349
+ }
350
+
351
+ db_info['S3DIS'] = {
352
+ 'db_root': 'tbd_data_root',
353
+ 'data_root': 's3dis',
354
+ 'meta_data_root': 's3dis',
355
+ 'normal_root': 's3dis',
356
+ 'train_annotations_path': 's3dis/s3dis/annotations/train.json',
357
+ 'test_annotations_path': 's3dis/s3dis/annotations/test.json',
358
+ 'val_annotations_path': 's3dis/s3dis/annotations/test.json',
359
+ }
360
+
361
+ db_info['Seasons4'] = {
362
+ 'db_root': 'tbd_data_root',
363
+ 'data_root': '4seasons/4seasons',
364
+ 'meta_data_root': '4seasons/4seasons',
365
+ 'train_annotations_path': '4seasons/4seasons/annotations/train.json',
366
+ 'test_annotations_path': '4seasons/4seasons/annotations/test.json',
367
+ 'val_annotations_path': '4seasons/4seasons/annotations/test.json',
368
+ }
369
+
370
+ db_info['Virtual_KITTI'] = {
371
+ 'db_root': 'tbd_data_root',
372
+ 'data_root': 'virtual_kitti',
373
+ 'meta_data_root': 'virtual_kitti',
374
+ 'semantic_root': 'virtual_kitti',
375
+ 'train_annotations_path': 'virtual_kitti/virtual_kitti/annotations/train.json',
376
+ 'test_annotations_path': 'virtual_kitti/virtual_kitti/annotations/test.json',
377
+ 'val_annotations_path': 'virtual_kitti/virtual_kitti/annotations/test.json',
378
+ }
379
+
380
+ db_info['IBIMS'] = {
381
+ 'db_root': 'tbd_data_root',
382
+ 'data_root': '',
383
+ 'train_annotations_path': 'iBims-1/annotations/train.json',
384
+ 'test_annotations_path': 'iBims-1/annotations/test.json',
385
+ 'val_annotations_path': 'iBims-1/annotations/test.json',
386
+ }
387
+
388
+ db_info['ScanNetAll'] = {
389
+ 'db_root': 'tbd_data_root',
390
+ 'data_root': 'scannet',
391
+ 'normal_root': 'scannet',
392
+ 'meta_data_root': 'scannet',
393
+ 'train_annotations_path': 'scannet/scannet/annotations/train.json',
394
+ 'test_annotations_path': 'scannet/scannet/annotations/test.json',
395
+ 'val_annotations_path': 'scannet/scannet/annotations/test.json',
396
+ }
397
+
398
+ db_info['Hypersim'] = {
399
+ 'db_root': 'tbd_data_root',
400
+ 'data_root': '',
401
+ 'meta_data_root': '',
402
+ 'normal_root': '',
403
+ # 'semantic_root': '', # Semantic tags without sky, see https://github.com/apple/ml-hypersim/blob/main/code/cpp/tools/scene_annotation_tool/semantic_label_descs.csv
404
+ 'train_annotations_path': 'Hypersim/annotations/train.json',
405
+ 'test_annotations_path': 'Hypersim/annotations/test.json',
406
+ 'val_annotations_path': 'Hypersim/annotations/test.json',
407
+ }
408
+
409
+ db_info['DIML_indoor'] = {
410
+ 'db_root': 'tbd_data_root',
411
+ 'data_root': '',
412
+ # 'semantic_root': '',
413
+ 'train_annotations_path': 'DIML_indoor_new/annotations/train.json',
414
+ 'test_annotations_path': 'DIML_indoor_new/annotations/test.json',
415
+ 'val_annotations_path': 'DIML_indoor_new/annotations/test.json',
416
+ }
external/Metric3D/training/kitti_json_files/eigen_test.json ADDED
The diff for this file is too large to render. See raw diff
 
external/Metric3D/training/kitti_json_files/eigen_test.txt ADDED
@@ -0,0 +1,697 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000069 l
2
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000054 l
3
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000042 l
4
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000057 l
5
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000030 l
6
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000027 l
7
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000012 l
8
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000075 l
9
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000036 l
10
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000033 l
11
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000015 l
12
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000072 l
13
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000003 l
14
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000039 l
15
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000009 l
16
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000051 l
17
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000060 l
18
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000021 l
19
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000000 l
20
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000024 l
21
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000045 l
22
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000018 l
23
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000048 l
24
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000006 l
25
+ 2011_09_26/2011_09_26_drive_0002_sync 0000000063 l
26
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000000 l
27
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000016 l
28
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000032 l
29
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000048 l
30
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000064 l
31
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000080 l
32
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000096 l
33
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000112 l
34
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000128 l
35
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000144 l
36
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000160 l
37
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000176 l
38
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000196 l
39
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000212 l
40
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000228 l
41
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000244 l
42
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000260 l
43
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000276 l
44
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000292 l
45
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000308 l
46
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000324 l
47
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000340 l
48
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000356 l
49
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000372 l
50
+ 2011_09_26/2011_09_26_drive_0009_sync 0000000388 l
51
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000090 l
52
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000050 l
53
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000110 l
54
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000115 l
55
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000060 l
56
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000105 l
57
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000125 l
58
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000020 l
59
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000140 l
60
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000085 l
61
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000070 l
62
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000080 l
63
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000065 l
64
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000095 l
65
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000130 l
66
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000100 l
67
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000010 l
68
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000030 l
69
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000000 l
70
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000135 l
71
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000040 l
72
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000005 l
73
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000120 l
74
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000045 l
75
+ 2011_09_26/2011_09_26_drive_0013_sync 0000000035 l
76
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000003 l
77
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000069 l
78
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000057 l
79
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000012 l
80
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000072 l
81
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000018 l
82
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000063 l
83
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000000 l
84
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000084 l
85
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000015 l
86
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000066 l
87
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000006 l
88
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000048 l
89
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000060 l
90
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000009 l
91
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000033 l
92
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000021 l
93
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000075 l
94
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000027 l
95
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000045 l
96
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000078 l
97
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000036 l
98
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000051 l
99
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000054 l
100
+ 2011_09_26/2011_09_26_drive_0020_sync 0000000042 l
101
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000018 l
102
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000090 l
103
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000126 l
104
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000378 l
105
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000036 l
106
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000288 l
107
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000198 l
108
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000450 l
109
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000144 l
110
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000072 l
111
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000252 l
112
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000180 l
113
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000432 l
114
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000396 l
115
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000054 l
116
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000468 l
117
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000306 l
118
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000108 l
119
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000162 l
120
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000342 l
121
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000270 l
122
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000414 l
123
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000216 l
124
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000360 l
125
+ 2011_09_26/2011_09_26_drive_0023_sync 0000000324 l
126
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000077 l
127
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000035 l
128
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000091 l
129
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000112 l
130
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000007 l
131
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000175 l
132
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000042 l
133
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000098 l
134
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000133 l
135
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000161 l
136
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000014 l
137
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000126 l
138
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000168 l
139
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000070 l
140
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000084 l
141
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000140 l
142
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000049 l
143
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000000 l
144
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000182 l
145
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000147 l
146
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000056 l
147
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000063 l
148
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000021 l
149
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000119 l
150
+ 2011_09_26/2011_09_26_drive_0027_sync 0000000028 l
151
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000380 l
152
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000394 l
153
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000324 l
154
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000000 l
155
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000268 l
156
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000366 l
157
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000296 l
158
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000014 l
159
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000028 l
160
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000182 l
161
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000168 l
162
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000196 l
163
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000140 l
164
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000084 l
165
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000056 l
166
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000112 l
167
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000352 l
168
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000126 l
169
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000070 l
170
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000310 l
171
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000154 l
172
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000098 l
173
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000408 l
174
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000042 l
175
+ 2011_09_26/2011_09_26_drive_0029_sync 0000000338 l
176
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000000 l
177
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000128 l
178
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000192 l
179
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000032 l
180
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000352 l
181
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000608 l
182
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000224 l
183
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000576 l
184
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000672 l
185
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000064 l
186
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000448 l
187
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000704 l
188
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000640 l
189
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000512 l
190
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000768 l
191
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000160 l
192
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000416 l
193
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000480 l
194
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000800 l
195
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000288 l
196
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000544 l
197
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000096 l
198
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000384 l
199
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000256 l
200
+ 2011_09_26/2011_09_26_drive_0036_sync 0000000320 l
201
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000000 l
202
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000005 l
203
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000010 l
204
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000015 l
205
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000020 l
206
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000025 l
207
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000030 l
208
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000035 l
209
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000040 l
210
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000045 l
211
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000050 l
212
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000055 l
213
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000060 l
214
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000065 l
215
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000070 l
216
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000075 l
217
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000080 l
218
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000085 l
219
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000090 l
220
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000095 l
221
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000100 l
222
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000105 l
223
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000110 l
224
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000115 l
225
+ 2011_09_26/2011_09_26_drive_0046_sync 0000000120 l
226
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000000 l
227
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000001 l
228
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000002 l
229
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000003 l
230
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000004 l
231
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000005 l
232
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000006 l
233
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000007 l
234
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000008 l
235
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000009 l
236
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000010 l
237
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000011 l
238
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000012 l
239
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000013 l
240
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000014 l
241
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000015 l
242
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000016 l
243
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000017 l
244
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000018 l
245
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000019 l
246
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000020 l
247
+ 2011_09_26/2011_09_26_drive_0048_sync 0000000021 l
248
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000046 l
249
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000014 l
250
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000036 l
251
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000028 l
252
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000026 l
253
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000050 l
254
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000040 l
255
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000008 l
256
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000016 l
257
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000044 l
258
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000018 l
259
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000032 l
260
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000042 l
261
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000010 l
262
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000020 l
263
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000048 l
264
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000052 l
265
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000006 l
266
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000030 l
267
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000012 l
268
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000038 l
269
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000000 l
270
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000002 l
271
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000004 l
272
+ 2011_09_26/2011_09_26_drive_0052_sync 0000000022 l
273
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000011 l
274
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000033 l
275
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000242 l
276
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000253 l
277
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000286 l
278
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000154 l
279
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000099 l
280
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000220 l
281
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000022 l
282
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000077 l
283
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000187 l
284
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000143 l
285
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000066 l
286
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000176 l
287
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000110 l
288
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000275 l
289
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000264 l
290
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000198 l
291
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000055 l
292
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000088 l
293
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000121 l
294
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000209 l
295
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000165 l
296
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000231 l
297
+ 2011_09_26/2011_09_26_drive_0056_sync 0000000044 l
298
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000056 l
299
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000000 l
300
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000344 l
301
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000358 l
302
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000316 l
303
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000238 l
304
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000098 l
305
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000112 l
306
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000028 l
307
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000014 l
308
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000330 l
309
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000154 l
310
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000042 l
311
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000302 l
312
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000182 l
313
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000288 l
314
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000140 l
315
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000274 l
316
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000224 l
317
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000372 l
318
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000196 l
319
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000126 l
320
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000084 l
321
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000210 l
322
+ 2011_09_26/2011_09_26_drive_0059_sync 0000000070 l
323
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000528 l
324
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000308 l
325
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000044 l
326
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000352 l
327
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000066 l
328
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000000 l
329
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000506 l
330
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000176 l
331
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000022 l
332
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000242 l
333
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000462 l
334
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000418 l
335
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000110 l
336
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000440 l
337
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000396 l
338
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000154 l
339
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000374 l
340
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000088 l
341
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000286 l
342
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000550 l
343
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000264 l
344
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000220 l
345
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000330 l
346
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000484 l
347
+ 2011_09_26/2011_09_26_drive_0064_sync 0000000198 l
348
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000283 l
349
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000361 l
350
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000270 l
351
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000127 l
352
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000205 l
353
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000218 l
354
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000153 l
355
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000335 l
356
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000192 l
357
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000348 l
358
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000101 l
359
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000049 l
360
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000179 l
361
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000140 l
362
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000374 l
363
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000322 l
364
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000309 l
365
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000244 l
366
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000062 l
367
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000257 l
368
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000088 l
369
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000114 l
370
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000075 l
371
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000296 l
372
+ 2011_09_26/2011_09_26_drive_0084_sync 0000000231 l
373
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000007 l
374
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000196 l
375
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000439 l
376
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000169 l
377
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000115 l
378
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000034 l
379
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000304 l
380
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000331 l
381
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000277 l
382
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000520 l
383
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000682 l
384
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000628 l
385
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000088 l
386
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000601 l
387
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000574 l
388
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000223 l
389
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000655 l
390
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000358 l
391
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000412 l
392
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000142 l
393
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000385 l
394
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000061 l
395
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000493 l
396
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000466 l
397
+ 2011_09_26/2011_09_26_drive_0086_sync 0000000250 l
398
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000000 l
399
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000016 l
400
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000032 l
401
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000048 l
402
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000064 l
403
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000080 l
404
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000096 l
405
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000112 l
406
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000128 l
407
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000144 l
408
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000160 l
409
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000176 l
410
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000192 l
411
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000208 l
412
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000224 l
413
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000240 l
414
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000256 l
415
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000305 l
416
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000321 l
417
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000337 l
418
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000353 l
419
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000369 l
420
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000385 l
421
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000401 l
422
+ 2011_09_26/2011_09_26_drive_0093_sync 0000000417 l
423
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000000 l
424
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000019 l
425
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000038 l
426
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000057 l
427
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000076 l
428
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000095 l
429
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000114 l
430
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000133 l
431
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000152 l
432
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000171 l
433
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000190 l
434
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000209 l
435
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000228 l
436
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000247 l
437
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000266 l
438
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000285 l
439
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000304 l
440
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000323 l
441
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000342 l
442
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000361 l
443
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000380 l
444
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000399 l
445
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000418 l
446
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000437 l
447
+ 2011_09_26/2011_09_26_drive_0096_sync 0000000456 l
448
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000692 l
449
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000930 l
450
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000760 l
451
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000896 l
452
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000284 l
453
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000148 l
454
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000522 l
455
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000794 l
456
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000624 l
457
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000726 l
458
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000216 l
459
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000318 l
460
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000488 l
461
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000590 l
462
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000454 l
463
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000862 l
464
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000386 l
465
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000352 l
466
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000420 l
467
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000658 l
468
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000828 l
469
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000556 l
470
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000114 l
471
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000182 l
472
+ 2011_09_26/2011_09_26_drive_0101_sync 0000000080 l
473
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000015 l
474
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000035 l
475
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000043 l
476
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000051 l
477
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000059 l
478
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000067 l
479
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000075 l
480
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000083 l
481
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000091 l
482
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000099 l
483
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000107 l
484
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000115 l
485
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000123 l
486
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000131 l
487
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000139 l
488
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000147 l
489
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000155 l
490
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000163 l
491
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000171 l
492
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000179 l
493
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000187 l
494
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000195 l
495
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000203 l
496
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000211 l
497
+ 2011_09_26/2011_09_26_drive_0106_sync 0000000219 l
498
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000312 l
499
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000494 l
500
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000104 l
501
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000130 l
502
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000156 l
503
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000182 l
504
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000598 l
505
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000416 l
506
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000364 l
507
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000026 l
508
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000078 l
509
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000572 l
510
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000468 l
511
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000260 l
512
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000624 l
513
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000234 l
514
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000442 l
515
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000390 l
516
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000546 l
517
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000286 l
518
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000000 l
519
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000338 l
520
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000208 l
521
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000650 l
522
+ 2011_09_26/2011_09_26_drive_0117_sync 0000000052 l
523
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000024 l
524
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000021 l
525
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000036 l
526
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000000 l
527
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000051 l
528
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000018 l
529
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000033 l
530
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000090 l
531
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000045 l
532
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000054 l
533
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000012 l
534
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000039 l
535
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000009 l
536
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000003 l
537
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000030 l
538
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000078 l
539
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000060 l
540
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000048 l
541
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000084 l
542
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000081 l
543
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000006 l
544
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000057 l
545
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000072 l
546
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000087 l
547
+ 2011_09_28/2011_09_28_drive_0002_sync 0000000063 l
548
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000252 l
549
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000540 l
550
+ 2011_09_29/2011_09_29_drive_0071_sync 0000001054 l
551
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000036 l
552
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000360 l
553
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000807 l
554
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000879 l
555
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000288 l
556
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000771 l
557
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000000 l
558
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000216 l
559
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000951 l
560
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000324 l
561
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000432 l
562
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000504 l
563
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000576 l
564
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000108 l
565
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000180 l
566
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000072 l
567
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000612 l
568
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000915 l
569
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000735 l
570
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000144 l
571
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000396 l
572
+ 2011_09_29/2011_09_29_drive_0071_sync 0000000468 l
573
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000132 l
574
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000011 l
575
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000154 l
576
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000022 l
577
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000242 l
578
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000198 l
579
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000176 l
580
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000231 l
581
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000275 l
582
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000220 l
583
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000088 l
584
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000143 l
585
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000055 l
586
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000033 l
587
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000187 l
588
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000110 l
589
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000044 l
590
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000077 l
591
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000066 l
592
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000000 l
593
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000165 l
594
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000264 l
595
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000253 l
596
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000209 l
597
+ 2011_09_30/2011_09_30_drive_0016_sync 0000000121 l
598
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000107 l
599
+ 2011_09_30/2011_09_30_drive_0018_sync 0000002247 l
600
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001391 l
601
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000535 l
602
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001819 l
603
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001177 l
604
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000428 l
605
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001926 l
606
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000749 l
607
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001284 l
608
+ 2011_09_30/2011_09_30_drive_0018_sync 0000002140 l
609
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001605 l
610
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001498 l
611
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000642 l
612
+ 2011_09_30/2011_09_30_drive_0018_sync 0000002740 l
613
+ 2011_09_30/2011_09_30_drive_0018_sync 0000002419 l
614
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000856 l
615
+ 2011_09_30/2011_09_30_drive_0018_sync 0000002526 l
616
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001712 l
617
+ 2011_09_30/2011_09_30_drive_0018_sync 0000001070 l
618
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000000 l
619
+ 2011_09_30/2011_09_30_drive_0018_sync 0000002033 l
620
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000214 l
621
+ 2011_09_30/2011_09_30_drive_0018_sync 0000000963 l
622
+ 2011_09_30/2011_09_30_drive_0018_sync 0000002633 l
623
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000533 l
624
+ 2011_09_30/2011_09_30_drive_0027_sync 0000001040 l
625
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000082 l
626
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000205 l
627
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000835 l
628
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000451 l
629
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000164 l
630
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000794 l
631
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000328 l
632
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000615 l
633
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000917 l
634
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000369 l
635
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000287 l
636
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000123 l
637
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000876 l
638
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000410 l
639
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000492 l
640
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000958 l
641
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000656 l
642
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000000 l
643
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000753 l
644
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000574 l
645
+ 2011_09_30/2011_09_30_drive_0027_sync 0000001081 l
646
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000041 l
647
+ 2011_09_30/2011_09_30_drive_0027_sync 0000000246 l
648
+ 2011_10_03/2011_10_03_drive_0027_sync 0000002906 l
649
+ 2011_10_03/2011_10_03_drive_0027_sync 0000002544 l
650
+ 2011_10_03/2011_10_03_drive_0027_sync 0000000362 l
651
+ 2011_10_03/2011_10_03_drive_0027_sync 0000004535 l
652
+ 2011_10_03/2011_10_03_drive_0027_sync 0000000734 l
653
+ 2011_10_03/2011_10_03_drive_0027_sync 0000001096 l
654
+ 2011_10_03/2011_10_03_drive_0027_sync 0000004173 l
655
+ 2011_10_03/2011_10_03_drive_0027_sync 0000000543 l
656
+ 2011_10_03/2011_10_03_drive_0027_sync 0000001277 l
657
+ 2011_10_03/2011_10_03_drive_0027_sync 0000004354 l
658
+ 2011_10_03/2011_10_03_drive_0027_sync 0000001458 l
659
+ 2011_10_03/2011_10_03_drive_0027_sync 0000001820 l
660
+ 2011_10_03/2011_10_03_drive_0027_sync 0000003449 l
661
+ 2011_10_03/2011_10_03_drive_0027_sync 0000003268 l
662
+ 2011_10_03/2011_10_03_drive_0027_sync 0000000915 l
663
+ 2011_10_03/2011_10_03_drive_0027_sync 0000002363 l
664
+ 2011_10_03/2011_10_03_drive_0027_sync 0000002725 l
665
+ 2011_10_03/2011_10_03_drive_0027_sync 0000000181 l
666
+ 2011_10_03/2011_10_03_drive_0027_sync 0000001639 l
667
+ 2011_10_03/2011_10_03_drive_0027_sync 0000003992 l
668
+ 2011_10_03/2011_10_03_drive_0027_sync 0000003087 l
669
+ 2011_10_03/2011_10_03_drive_0027_sync 0000002001 l
670
+ 2011_10_03/2011_10_03_drive_0027_sync 0000003811 l
671
+ 2011_10_03/2011_10_03_drive_0027_sync 0000003630 l
672
+ 2011_10_03/2011_10_03_drive_0027_sync 0000000000 l
673
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000096 l
674
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000800 l
675
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000320 l
676
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000576 l
677
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000000 l
678
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000480 l
679
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000640 l
680
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000032 l
681
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000384 l
682
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000160 l
683
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000704 l
684
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000736 l
685
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000672 l
686
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000064 l
687
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000288 l
688
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000352 l
689
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000512 l
690
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000544 l
691
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000608 l
692
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000128 l
693
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000224 l
694
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000416 l
695
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000192 l
696
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000448 l
697
+ 2011_10_03/2011_10_03_drive_0047_sync 0000000768 l
external/Metric3D/training/kitti_json_files/eigen_train.txt ADDED
The diff for this file is too large to render. See raw diff
 
external/Metric3D/training/kitti_json_files/eigen_val.txt ADDED
@@ -0,0 +1,1776 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2011_09_26/2011_09_26_drive_0011_sync 21 r
2
+ 2011_09_26/2011_09_26_drive_0104_sync 120 r
3
+ 2011_10_03/2011_10_03_drive_0034_sync 2533 r
4
+ 2011_09_30/2011_09_30_drive_0034_sync 778 l
5
+ 2011_10_03/2011_10_03_drive_0042_sync 155 l
6
+ 2011_09_26/2011_09_26_drive_0039_sync 172 l
7
+ 2011_09_30/2011_09_30_drive_0034_sync 485 r
8
+ 2011_09_26/2011_09_26_drive_0061_sync 166 l
9
+ 2011_09_28/2011_09_28_drive_0001_sync 4 r
10
+ 2011_09_26/2011_09_26_drive_0095_sync 84 r
11
+ 2011_10_03/2011_10_03_drive_0034_sync 2879 r
12
+ 2011_09_30/2011_09_30_drive_0028_sync 2451 l
13
+ 2011_09_26/2011_09_26_drive_0011_sync 25 r
14
+ 2011_10_03/2011_10_03_drive_0034_sync 2373 l
15
+ 2011_09_30/2011_09_30_drive_0028_sync 2303 r
16
+ 2011_09_29/2011_09_29_drive_0026_sync 154 l
17
+ 2011_09_26/2011_09_26_drive_0022_sync 98 r
18
+ 2011_09_30/2011_09_30_drive_0028_sync 3487 r
19
+ 2011_09_30/2011_09_30_drive_0034_sync 663 l
20
+ 2011_09_26/2011_09_26_drive_0015_sync 0 l
21
+ 2011_09_30/2011_09_30_drive_0028_sync 3272 r
22
+ 2011_09_30/2011_09_30_drive_0028_sync 771 r
23
+ 2011_09_26/2011_09_26_drive_0087_sync 74 l
24
+ 2011_09_26/2011_09_26_drive_0035_sync 40 l
25
+ 2011_09_30/2011_09_30_drive_0028_sync 4503 r
26
+ 2011_09_26/2011_09_26_drive_0061_sync 106 r
27
+ 2011_09_26/2011_09_26_drive_0113_sync 75 r
28
+ 2011_09_30/2011_09_30_drive_0028_sync 1739 r
29
+ 2011_10_03/2011_10_03_drive_0042_sync 563 l
30
+ 2011_09_26/2011_09_26_drive_0001_sync 71 l
31
+ 2011_10_03/2011_10_03_drive_0034_sync 2662 l
32
+ 2011_10_03/2011_10_03_drive_0042_sync 753 r
33
+ 2011_10_03/2011_10_03_drive_0034_sync 1289 l
34
+ 2011_09_30/2011_09_30_drive_0020_sync 235 l
35
+ 2011_10_03/2011_10_03_drive_0034_sync 2879 l
36
+ 2011_09_26/2011_09_26_drive_0028_sync 423 l
37
+ 2011_10_03/2011_10_03_drive_0034_sync 3091 l
38
+ 2011_10_03/2011_10_03_drive_0034_sync 1540 l
39
+ 2011_10_03/2011_10_03_drive_0034_sync 4612 r
40
+ 2011_10_03/2011_10_03_drive_0042_sync 27 r
41
+ 2011_09_26/2011_09_26_drive_0095_sync 1 l
42
+ 2011_09_26/2011_09_26_drive_0061_sync 114 r
43
+ 2011_10_03/2011_10_03_drive_0034_sync 4592 l
44
+ 2011_10_03/2011_10_03_drive_0042_sync 718 l
45
+ 2011_09_30/2011_09_30_drive_0033_sync 1531 l
46
+ 2011_09_26/2011_09_26_drive_0018_sync 227 r
47
+ 2011_09_26/2011_09_26_drive_0022_sync 113 l
48
+ 2011_09_30/2011_09_30_drive_0033_sync 77 l
49
+ 2011_10_03/2011_10_03_drive_0034_sync 1916 r
50
+ 2011_09_30/2011_09_30_drive_0034_sync 420 l
51
+ 2011_10_03/2011_10_03_drive_0034_sync 1916 l
52
+ 2011_09_26/2011_09_26_drive_0032_sync 65 l
53
+ 2011_09_26/2011_09_26_drive_0015_sync 156 r
54
+ 2011_09_30/2011_09_30_drive_0028_sync 5096 r
55
+ 2011_09_26/2011_09_26_drive_0104_sync 252 l
56
+ 2011_09_30/2011_09_30_drive_0034_sync 62 l
57
+ 2011_09_30/2011_09_30_drive_0028_sync 4896 l
58
+ 2011_09_26/2011_09_26_drive_0022_sync 779 r
59
+ 2011_09_26/2011_09_26_drive_0019_sync 224 r
60
+ 2011_09_26/2011_09_26_drive_0104_sync 171 l
61
+ 2011_09_26/2011_09_26_drive_0019_sync 86 r
62
+ 2011_10_03/2011_10_03_drive_0034_sync 980 l
63
+ 2011_09_30/2011_09_30_drive_0034_sync 969 l
64
+ 2011_09_30/2011_09_30_drive_0028_sync 3634 l
65
+ 2011_10_03/2011_10_03_drive_0034_sync 1212 l
66
+ 2011_09_26/2011_09_26_drive_0057_sync 260 l
67
+ 2011_09_30/2011_09_30_drive_0028_sync 4656 r
68
+ 2011_09_26/2011_09_26_drive_0032_sync 195 r
69
+ 2011_10_03/2011_10_03_drive_0034_sync 1889 l
70
+ 2011_09_30/2011_09_30_drive_0028_sync 4804 l
71
+ 2011_10_03/2011_10_03_drive_0034_sync 3543 l
72
+ 2011_09_26/2011_09_26_drive_0035_sync 119 r
73
+ 2011_10_03/2011_10_03_drive_0034_sync 1118 l
74
+ 2011_09_30/2011_09_30_drive_0020_sync 389 l
75
+ 2011_09_26/2011_09_26_drive_0061_sync 38 l
76
+ 2011_09_30/2011_09_30_drive_0028_sync 3426 l
77
+ 2011_09_30/2011_09_30_drive_0020_sync 137 r
78
+ 2011_09_26/2011_09_26_drive_0051_sync 233 l
79
+ 2011_09_30/2011_09_30_drive_0028_sync 2988 r
80
+ 2011_09_26/2011_09_26_drive_0060_sync 53 l
81
+ 2011_10_03/2011_10_03_drive_0034_sync 2677 r
82
+ 2011_09_30/2011_09_30_drive_0028_sync 5143 l
83
+ 2011_10_03/2011_10_03_drive_0034_sync 876 l
84
+ 2011_10_03/2011_10_03_drive_0034_sync 924 l
85
+ 2011_09_30/2011_09_30_drive_0034_sync 110 l
86
+ 2011_10_03/2011_10_03_drive_0034_sync 729 r
87
+ 2011_10_03/2011_10_03_drive_0042_sync 793 r
88
+ 2011_09_26/2011_09_26_drive_0061_sync 246 l
89
+ 2011_09_26/2011_09_26_drive_0039_sync 105 r
90
+ 2011_09_26/2011_09_26_drive_0087_sync 549 r
91
+ 2011_10_03/2011_10_03_drive_0034_sync 3163 r
92
+ 2011_09_26/2011_09_26_drive_0001_sync 86 r
93
+ 2011_10_03/2011_10_03_drive_0034_sync 112 l
94
+ 2011_09_30/2011_09_30_drive_0028_sync 2362 l
95
+ 2011_10_03/2011_10_03_drive_0034_sync 1041 r
96
+ 2011_10_03/2011_10_03_drive_0034_sync 790 l
97
+ 2011_09_30/2011_09_30_drive_0028_sync 1332 r
98
+ 2011_09_30/2011_09_30_drive_0028_sync 3574 r
99
+ 2011_09_30/2011_09_30_drive_0028_sync 2833 l
100
+ 2011_09_26/2011_09_26_drive_0039_sync 254 l
101
+ 2011_09_26/2011_09_26_drive_0039_sync 56 l
102
+ 2011_09_26/2011_09_26_drive_0022_sync 616 r
103
+ 2011_09_30/2011_09_30_drive_0028_sync 4737 r
104
+ 2011_09_30/2011_09_30_drive_0028_sync 4174 l
105
+ 2011_09_30/2011_09_30_drive_0033_sync 527 r
106
+ 2011_09_30/2011_09_30_drive_0028_sync 3537 r
107
+ 2011_09_26/2011_09_26_drive_0079_sync 41 l
108
+ 2011_09_26/2011_09_26_drive_0022_sync 232 l
109
+ 2011_09_30/2011_09_30_drive_0020_sync 1016 l
110
+ 2011_09_26/2011_09_26_drive_0113_sync 30 l
111
+ 2011_09_30/2011_09_30_drive_0028_sync 1576 r
112
+ 2011_09_26/2011_09_26_drive_0019_sync 224 l
113
+ 2011_10_03/2011_10_03_drive_0034_sync 548 l
114
+ 2011_09_26/2011_09_26_drive_0019_sync 321 l
115
+ 2011_10_03/2011_10_03_drive_0042_sync 335 r
116
+ 2011_09_30/2011_09_30_drive_0034_sync 305 r
117
+ 2011_09_30/2011_09_30_drive_0028_sync 4424 l
118
+ 2011_10_03/2011_10_03_drive_0034_sync 790 r
119
+ 2011_10_03/2011_10_03_drive_0034_sync 1037 l
120
+ 2011_10_03/2011_10_03_drive_0034_sync 3422 l
121
+ 2011_10_03/2011_10_03_drive_0034_sync 2143 l
122
+ 2011_10_03/2011_10_03_drive_0034_sync 2004 r
123
+ 2011_10_03/2011_10_03_drive_0042_sync 973 l
124
+ 2011_10_03/2011_10_03_drive_0034_sync 1889 r
125
+ 2011_09_30/2011_09_30_drive_0028_sync 1052 l
126
+ 2011_09_26/2011_09_26_drive_0039_sync 149 l
127
+ 2011_09_26/2011_09_26_drive_0061_sync 379 l
128
+ 2011_09_30/2011_09_30_drive_0028_sync 456 r
129
+ 2011_09_30/2011_09_30_drive_0028_sync 1907 r
130
+ 2011_09_30/2011_09_30_drive_0020_sync 90 l
131
+ 2011_10_03/2011_10_03_drive_0034_sync 2381 r
132
+ 2011_10_03/2011_10_03_drive_0034_sync 1730 l
133
+ 2011_09_26/2011_09_26_drive_0032_sync 55 l
134
+ 2011_09_30/2011_09_30_drive_0033_sync 1300 r
135
+ 2011_10_03/2011_10_03_drive_0042_sync 927 r
136
+ 2011_09_26/2011_09_26_drive_0022_sync 24 r
137
+ 2011_09_30/2011_09_30_drive_0028_sync 2830 r
138
+ 2011_09_30/2011_09_30_drive_0020_sync 869 l
139
+ 2011_10_03/2011_10_03_drive_0034_sync 2895 r
140
+ 2011_09_26/2011_09_26_drive_0087_sync 437 r
141
+ 2011_09_26/2011_09_26_drive_0032_sync 77 r
142
+ 2011_10_03/2011_10_03_drive_0034_sync 3465 l
143
+ 2011_09_30/2011_09_30_drive_0028_sync 621 r
144
+ 2011_09_30/2011_09_30_drive_0028_sync 3237 l
145
+ 2011_09_26/2011_09_26_drive_0011_sync 21 l
146
+ 2011_10_03/2011_10_03_drive_0034_sync 4452 r
147
+ 2011_09_30/2011_09_30_drive_0034_sync 835 r
148
+ 2011_09_30/2011_09_30_drive_0033_sync 1053 l
149
+ 2011_09_26/2011_09_26_drive_0060_sync 19 r
150
+ 2011_09_26/2011_09_26_drive_0061_sync 274 r
151
+ 2011_10_03/2011_10_03_drive_0034_sync 548 r
152
+ 2011_09_30/2011_09_30_drive_0028_sync 3487 l
153
+ 2011_10_03/2011_10_03_drive_0034_sync 3188 r
154
+ 2011_09_30/2011_09_30_drive_0028_sync 3580 r
155
+ 2011_10_03/2011_10_03_drive_0034_sync 645 l
156
+ 2011_10_03/2011_10_03_drive_0034_sync 2174 l
157
+ 2011_09_30/2011_09_30_drive_0033_sync 1053 r
158
+ 2011_09_28/2011_09_28_drive_0001_sync 13 r
159
+ 2011_09_26/2011_09_26_drive_0061_sync 4 r
160
+ 2011_09_26/2011_09_26_drive_0014_sync 41 r
161
+ 2011_09_30/2011_09_30_drive_0028_sync 75 l
162
+ 2011_09_30/2011_09_30_drive_0033_sync 13 l
163
+ 2011_09_30/2011_09_30_drive_0028_sync 2477 l
164
+ 2011_09_30/2011_09_30_drive_0028_sync 4737 l
165
+ 2011_10_03/2011_10_03_drive_0042_sync 27 l
166
+ 2011_09_30/2011_09_30_drive_0028_sync 1576 l
167
+ 2011_10_03/2011_10_03_drive_0034_sync 3003 l
168
+ 2011_09_30/2011_09_30_drive_0020_sync 619 l
169
+ 2011_09_30/2011_09_30_drive_0034_sync 340 r
170
+ 2011_09_30/2011_09_30_drive_0028_sync 1166 l
171
+ 2011_09_26/2011_09_26_drive_0035_sync 90 r
172
+ 2011_09_30/2011_09_30_drive_0033_sync 641 r
173
+ 2011_10_03/2011_10_03_drive_0034_sync 1189 l
174
+ 2011_09_30/2011_09_30_drive_0028_sync 934 l
175
+ 2011_09_26/2011_09_26_drive_0018_sync 84 r
176
+ 2011_09_30/2011_09_30_drive_0033_sync 1045 l
177
+ 2011_09_26/2011_09_26_drive_0061_sync 7 l
178
+ 2011_09_30/2011_09_30_drive_0028_sync 3820 r
179
+ 2011_09_30/2011_09_30_drive_0033_sync 660 l
180
+ 2011_09_26/2011_09_26_drive_0060_sync 18 r
181
+ 2011_09_26/2011_09_26_drive_0061_sync 607 l
182
+ 2011_09_30/2011_09_30_drive_0033_sync 37 r
183
+ 2011_09_26/2011_09_26_drive_0001_sync 100 r
184
+ 2011_09_30/2011_09_30_drive_0028_sync 961 r
185
+ 2011_09_26/2011_09_26_drive_0014_sync 142 r
186
+ 2011_09_26/2011_09_26_drive_0061_sync 142 l
187
+ 2011_09_30/2011_09_30_drive_0028_sync 3650 l
188
+ 2011_10_03/2011_10_03_drive_0034_sync 2932 l
189
+ 2011_09_30/2011_09_30_drive_0020_sync 389 r
190
+ 2011_09_26/2011_09_26_drive_0061_sync 600 r
191
+ 2011_09_30/2011_09_30_drive_0028_sync 3581 r
192
+ 2011_09_30/2011_09_30_drive_0028_sync 2592 r
193
+ 2011_09_30/2011_09_30_drive_0028_sync 621 l
194
+ 2011_09_29/2011_09_29_drive_0004_sync 81 r
195
+ 2011_09_26/2011_09_26_drive_0057_sync 170 r
196
+ 2011_09_30/2011_09_30_drive_0028_sync 2920 l
197
+ 2011_09_26/2011_09_26_drive_0087_sync 566 l
198
+ 2011_09_26/2011_09_26_drive_0028_sync 363 r
199
+ 2011_10_03/2011_10_03_drive_0042_sync 974 l
200
+ 2011_09_26/2011_09_26_drive_0019_sync 78 l
201
+ 2011_09_30/2011_09_30_drive_0028_sync 3669 l
202
+ 2011_09_30/2011_09_30_drive_0028_sync 1628 l
203
+ 2011_09_26/2011_09_26_drive_0087_sync 437 l
204
+ 2011_09_30/2011_09_30_drive_0028_sync 2174 r
205
+ 2011_10_03/2011_10_03_drive_0042_sync 1150 l
206
+ 2011_09_30/2011_09_30_drive_0028_sync 3408 r
207
+ 2011_09_30/2011_09_30_drive_0034_sync 195 l
208
+ 2011_09_26/2011_09_26_drive_0005_sync 26 r
209
+ 2011_09_26/2011_09_26_drive_0061_sync 521 l
210
+ 2011_09_26/2011_09_26_drive_0032_sync 61 l
211
+ 2011_09_30/2011_09_30_drive_0033_sync 243 l
212
+ 2011_09_30/2011_09_30_drive_0028_sync 456 l
213
+ 2011_09_26/2011_09_26_drive_0095_sync 177 r
214
+ 2011_10_03/2011_10_03_drive_0034_sync 2360 r
215
+ 2011_10_03/2011_10_03_drive_0034_sync 2630 r
216
+ 2011_09_29/2011_09_29_drive_0004_sync 224 r
217
+ 2011_09_30/2011_09_30_drive_0034_sync 56 l
218
+ 2011_09_30/2011_09_30_drive_0034_sync 319 r
219
+ 2011_09_29/2011_09_29_drive_0004_sync 17 l
220
+ 2011_09_30/2011_09_30_drive_0034_sync 132 l
221
+ 2011_09_26/2011_09_26_drive_0051_sync 17 r
222
+ 2011_09_26/2011_09_26_drive_0011_sync 181 l
223
+ 2011_09_30/2011_09_30_drive_0028_sync 3012 r
224
+ 2011_09_26/2011_09_26_drive_0070_sync 67 l
225
+ 2011_10_03/2011_10_03_drive_0034_sync 2632 r
226
+ 2011_09_26/2011_09_26_drive_0018_sync 227 l
227
+ 2011_10_03/2011_10_03_drive_0034_sync 4529 r
228
+ 2011_09_26/2011_09_26_drive_0087_sync 617 l
229
+ 2011_09_30/2011_09_30_drive_0028_sync 672 r
230
+ 2011_09_26/2011_09_26_drive_0051_sync 39 r
231
+ 2011_10_03/2011_10_03_drive_0034_sync 2647 r
232
+ 2011_09_30/2011_09_30_drive_0034_sync 142 l
233
+ 2011_09_30/2011_09_30_drive_0028_sync 258 r
234
+ 2011_10_03/2011_10_03_drive_0034_sync 2221 l
235
+ 2011_09_26/2011_09_26_drive_0039_sync 379 r
236
+ 2011_10_03/2011_10_03_drive_0042_sync 53 l
237
+ 2011_09_30/2011_09_30_drive_0028_sync 4927 l
238
+ 2011_10_03/2011_10_03_drive_0034_sync 3079 r
239
+ 2011_09_26/2011_09_26_drive_0014_sync 142 l
240
+ 2011_09_30/2011_09_30_drive_0028_sync 1634 r
241
+ 2011_10_03/2011_10_03_drive_0034_sync 2677 l
242
+ 2011_09_30/2011_09_30_drive_0033_sync 687 r
243
+ 2011_10_03/2011_10_03_drive_0034_sync 3860 l
244
+ 2011_10_03/2011_10_03_drive_0034_sync 2337 l
245
+ 2011_09_26/2011_09_26_drive_0095_sync 64 l
246
+ 2011_09_26/2011_09_26_drive_0061_sync 579 l
247
+ 2011_09_26/2011_09_26_drive_0087_sync 316 l
248
+ 2011_09_30/2011_09_30_drive_0020_sync 222 l
249
+ 2011_09_26/2011_09_26_drive_0018_sync 15 r
250
+ 2011_09_30/2011_09_30_drive_0028_sync 3638 l
251
+ 2011_09_26/2011_09_26_drive_0014_sync 256 r
252
+ 2011_10_03/2011_10_03_drive_0034_sync 3401 l
253
+ 2011_09_26/2011_09_26_drive_0039_sync 291 r
254
+ 2011_09_26/2011_09_26_drive_0011_sync 27 r
255
+ 2011_10_03/2011_10_03_drive_0042_sync 718 r
256
+ 2011_09_30/2011_09_30_drive_0028_sync 5032 l
257
+ 2011_09_26/2011_09_26_drive_0087_sync 452 l
258
+ 2011_09_26/2011_09_26_drive_0070_sync 198 r
259
+ 2011_09_26/2011_09_26_drive_0022_sync 568 l
260
+ 2011_10_03/2011_10_03_drive_0034_sync 1873 r
261
+ 2011_09_26/2011_09_26_drive_0028_sync 48 l
262
+ 2011_09_26/2011_09_26_drive_0028_sync 48 r
263
+ 2011_09_30/2011_09_30_drive_0028_sync 4534 l
264
+ 2011_10_03/2011_10_03_drive_0034_sync 2381 l
265
+ 2011_09_30/2011_09_30_drive_0028_sync 4998 r
266
+ 2011_09_26/2011_09_26_drive_0095_sync 28 r
267
+ 2011_09_30/2011_09_30_drive_0028_sync 4534 r
268
+ 2011_09_30/2011_09_30_drive_0028_sync 3647 r
269
+ 2011_10_03/2011_10_03_drive_0034_sync 2105 l
270
+ 2011_09_26/2011_09_26_drive_0061_sync 420 r
271
+ 2011_09_30/2011_09_30_drive_0020_sync 320 l
272
+ 2011_09_26/2011_09_26_drive_0019_sync 78 r
273
+ 2011_09_30/2011_09_30_drive_0028_sync 2862 r
274
+ 2011_09_30/2011_09_30_drive_0034_sync 485 l
275
+ 2011_09_26/2011_09_26_drive_0104_sync 232 l
276
+ 2011_09_30/2011_09_30_drive_0028_sync 4085 l
277
+ 2011_09_26/2011_09_26_drive_0018_sync 234 l
278
+ 2011_10_03/2011_10_03_drive_0042_sync 793 l
279
+ 2011_09_30/2011_09_30_drive_0028_sync 3625 l
280
+ 2011_09_26/2011_09_26_drive_0061_sync 423 l
281
+ 2011_09_29/2011_09_29_drive_0026_sync 7 l
282
+ 2011_10_03/2011_10_03_drive_0034_sync 2439 r
283
+ 2011_09_26/2011_09_26_drive_0061_sync 684 l
284
+ 2011_09_30/2011_09_30_drive_0028_sync 4825 r
285
+ 2011_10_03/2011_10_03_drive_0034_sync 1523 r
286
+ 2011_10_03/2011_10_03_drive_0034_sync 1679 l
287
+ 2011_09_30/2011_09_30_drive_0034_sync 167 l
288
+ 2011_09_26/2011_09_26_drive_0022_sync 614 r
289
+ 2011_09_26/2011_09_26_drive_0061_sync 637 l
290
+ 2011_09_26/2011_09_26_drive_0005_sync 26 l
291
+ 2011_09_30/2011_09_30_drive_0028_sync 4048 r
292
+ 2011_09_30/2011_09_30_drive_0020_sync 608 r
293
+ 2011_09_26/2011_09_26_drive_0051_sync 231 r
294
+ 2011_09_30/2011_09_30_drive_0028_sync 4562 l
295
+ 2011_09_26/2011_09_26_drive_0070_sync 280 r
296
+ 2011_09_26/2011_09_26_drive_0051_sync 322 r
297
+ 2011_09_30/2011_09_30_drive_0033_sync 660 r
298
+ 2011_09_30/2011_09_30_drive_0020_sync 942 l
299
+ 2011_10_03/2011_10_03_drive_0034_sync 2461 r
300
+ 2011_09_30/2011_09_30_drive_0034_sync 11 r
301
+ 2011_09_30/2011_09_30_drive_0028_sync 3766 l
302
+ 2011_09_30/2011_09_30_drive_0028_sync 4813 l
303
+ 2011_09_29/2011_09_29_drive_0004_sync 321 l
304
+ 2011_09_26/2011_09_26_drive_0091_sync 258 r
305
+ 2011_09_26/2011_09_26_drive_0019_sync 280 l
306
+ 2011_09_26/2011_09_26_drive_0039_sync 151 l
307
+ 2011_09_30/2011_09_30_drive_0028_sync 2738 l
308
+ 2011_09_26/2011_09_26_drive_0014_sync 22 l
309
+ 2011_10_03/2011_10_03_drive_0034_sync 4627 l
310
+ 2011_09_26/2011_09_26_drive_0051_sync 17 l
311
+ 2011_09_26/2011_09_26_drive_0019_sync 288 l
312
+ 2011_10_03/2011_10_03_drive_0042_sync 512 l
313
+ 2011_09_26/2011_09_26_drive_0104_sync 227 r
314
+ 2011_10_03/2011_10_03_drive_0034_sync 2360 l
315
+ 2011_09_30/2011_09_30_drive_0028_sync 993 l
316
+ 2011_09_26/2011_09_26_drive_0035_sync 119 l
317
+ 2011_09_26/2011_09_26_drive_0104_sync 270 r
318
+ 2011_10_03/2011_10_03_drive_0034_sync 3422 r
319
+ 2011_09_30/2011_09_30_drive_0028_sync 62 r
320
+ 2011_09_26/2011_09_26_drive_0018_sync 34 l
321
+ 2011_09_26/2011_09_26_drive_0001_sync 3 r
322
+ 2011_09_30/2011_09_30_drive_0028_sync 4626 r
323
+ 2011_09_26/2011_09_26_drive_0051_sync 433 l
324
+ 2011_09_30/2011_09_30_drive_0028_sync 2759 l
325
+ 2011_09_30/2011_09_30_drive_0028_sync 2363 r
326
+ 2011_09_26/2011_09_26_drive_0014_sync 46 r
327
+ 2011_09_30/2011_09_30_drive_0028_sync 4053 r
328
+ 2011_09_26/2011_09_26_drive_0022_sync 400 l
329
+ 2011_09_26/2011_09_26_drive_0028_sync 12 l
330
+ 2011_09_30/2011_09_30_drive_0028_sync 3330 r
331
+ 2011_09_26/2011_09_26_drive_0070_sync 175 r
332
+ 2011_09_26/2011_09_26_drive_0061_sync 423 r
333
+ 2011_09_30/2011_09_30_drive_0028_sync 3860 l
334
+ 2011_09_26/2011_09_26_drive_0014_sync 281 l
335
+ 2011_10_03/2011_10_03_drive_0034_sync 3731 r
336
+ 2011_09_26/2011_09_26_drive_0061_sync 544 l
337
+ 2011_09_30/2011_09_30_drive_0028_sync 3281 l
338
+ 2011_10_03/2011_10_03_drive_0034_sync 3277 r
339
+ 2011_10_03/2011_10_03_drive_0042_sync 676 r
340
+ 2011_09_30/2011_09_30_drive_0028_sync 514 l
341
+ 2011_10_03/2011_10_03_drive_0042_sync 458 l
342
+ 2011_09_30/2011_09_30_drive_0028_sync 588 r
343
+ 2011_09_30/2011_09_30_drive_0028_sync 4117 l
344
+ 2011_09_30/2011_09_30_drive_0028_sync 822 l
345
+ 2011_09_30/2011_09_30_drive_0028_sync 3625 r
346
+ 2011_09_30/2011_09_30_drive_0028_sync 1199 r
347
+ 2011_09_26/2011_09_26_drive_0104_sync 272 l
348
+ 2011_09_30/2011_09_30_drive_0020_sync 941 r
349
+ 2011_10_03/2011_10_03_drive_0042_sync 934 r
350
+ 2011_10_03/2011_10_03_drive_0034_sync 395 l
351
+ 2011_09_26/2011_09_26_drive_0011_sync 224 r
352
+ 2011_09_30/2011_09_30_drive_0034_sync 422 r
353
+ 2011_10_03/2011_10_03_drive_0042_sync 979 r
354
+ 2011_10_03/2011_10_03_drive_0034_sync 3367 r
355
+ 2011_09_26/2011_09_26_drive_0087_sync 605 l
356
+ 2011_09_30/2011_09_30_drive_0034_sync 467 r
357
+ 2011_10_03/2011_10_03_drive_0034_sync 2675 l
358
+ 2011_09_30/2011_09_30_drive_0028_sync 2382 l
359
+ 2011_09_26/2011_09_26_drive_0022_sync 227 l
360
+ 2011_10_03/2011_10_03_drive_0034_sync 3208 r
361
+ 2011_09_26/2011_09_26_drive_0091_sync 165 r
362
+ 2011_09_26/2011_09_26_drive_0087_sync 31 l
363
+ 2011_09_26/2011_09_26_drive_0005_sync 47 l
364
+ 2011_10_03/2011_10_03_drive_0034_sync 3163 l
365
+ 2011_09_26/2011_09_26_drive_0032_sync 316 l
366
+ 2011_09_26/2011_09_26_drive_0061_sync 437 r
367
+ 2011_09_26/2011_09_26_drive_0079_sync 59 r
368
+ 2011_09_30/2011_09_30_drive_0020_sync 13 l
369
+ 2011_09_30/2011_09_30_drive_0028_sync 461 l
370
+ 2011_09_26/2011_09_26_drive_0032_sync 293 r
371
+ 2011_09_30/2011_09_30_drive_0028_sync 730 l
372
+ 2011_10_03/2011_10_03_drive_0034_sync 2294 r
373
+ 2011_09_26/2011_09_26_drive_0070_sync 280 l
374
+ 2011_09_30/2011_09_30_drive_0034_sync 1000 r
375
+ 2011_10_03/2011_10_03_drive_0042_sync 1141 r
376
+ 2011_09_30/2011_09_30_drive_0028_sync 3114 r
377
+ 2011_10_03/2011_10_03_drive_0034_sync 1994 r
378
+ 2011_09_26/2011_09_26_drive_0051_sync 34 r
379
+ 2011_10_03/2011_10_03_drive_0034_sync 876 r
380
+ 2011_09_26/2011_09_26_drive_0051_sync 386 r
381
+ 2011_09_26/2011_09_26_drive_0087_sync 605 r
382
+ 2011_09_30/2011_09_30_drive_0028_sync 4626 l
383
+ 2011_10_03/2011_10_03_drive_0034_sync 3091 r
384
+ 2011_09_30/2011_09_30_drive_0028_sync 3446 l
385
+ 2011_09_30/2011_09_30_drive_0028_sync 4048 l
386
+ 2011_09_26/2011_09_26_drive_0028_sync 323 r
387
+ 2011_10_03/2011_10_03_drive_0034_sync 264 r
388
+ 2011_09_30/2011_09_30_drive_0028_sync 1137 l
389
+ 2011_10_03/2011_10_03_drive_0042_sync 85 l
390
+ 2011_10_03/2011_10_03_drive_0034_sync 2221 r
391
+ 2011_09_26/2011_09_26_drive_0011_sync 6 r
392
+ 2011_09_26/2011_09_26_drive_0087_sync 546 l
393
+ 2011_10_03/2011_10_03_drive_0034_sync 3635 r
394
+ 2011_09_26/2011_09_26_drive_0019_sync 269 r
395
+ 2011_09_26/2011_09_26_drive_0060_sync 16 l
396
+ 2011_10_03/2011_10_03_drive_0034_sync 2766 l
397
+ 2011_09_30/2011_09_30_drive_0028_sync 1052 r
398
+ 2011_09_30/2011_09_30_drive_0028_sync 1404 l
399
+ 2011_10_03/2011_10_03_drive_0034_sync 2051 r
400
+ 2011_09_30/2011_09_30_drive_0020_sync 1017 r
401
+ 2011_10_03/2011_10_03_drive_0034_sync 2994 r
402
+ 2011_09_26/2011_09_26_drive_0011_sync 171 l
403
+ 2011_09_30/2011_09_30_drive_0034_sync 924 r
404
+ 2011_09_26/2011_09_26_drive_0039_sync 105 l
405
+ 2011_09_26/2011_09_26_drive_0039_sync 72 r
406
+ 2011_10_03/2011_10_03_drive_0034_sync 916 r
407
+ 2011_09_30/2011_09_30_drive_0028_sync 3178 l
408
+ 2011_09_30/2011_09_30_drive_0028_sync 2988 l
409
+ 2011_09_30/2011_09_30_drive_0028_sync 4300 l
410
+ 2011_09_26/2011_09_26_drive_0001_sync 71 r
411
+ 2011_09_30/2011_09_30_drive_0028_sync 4562 r
412
+ 2011_10_03/2011_10_03_drive_0034_sync 1070 l
413
+ 2011_10_03/2011_10_03_drive_0042_sync 656 r
414
+ 2011_09_30/2011_09_30_drive_0034_sync 778 r
415
+ 2011_10_03/2011_10_03_drive_0034_sync 680 r
416
+ 2011_10_03/2011_10_03_drive_0042_sync 1151 r
417
+ 2011_09_30/2011_09_30_drive_0028_sync 4053 l
418
+ 2011_09_26/2011_09_26_drive_0061_sync 8 r
419
+ 2011_09_26/2011_09_26_drive_0061_sync 306 r
420
+ 2011_09_26/2011_09_26_drive_0039_sync 72 l
421
+ 2011_09_26/2011_09_26_drive_0022_sync 614 l
422
+ 2011_09_26/2011_09_26_drive_0087_sync 31 r
423
+ 2011_10_03/2011_10_03_drive_0042_sync 634 l
424
+ 2011_09_26/2011_09_26_drive_0022_sync 480 l
425
+ 2011_09_29/2011_09_29_drive_0026_sync 154 r
426
+ 2011_10_03/2011_10_03_drive_0034_sync 3274 r
427
+ 2011_09_26/2011_09_26_drive_0057_sync 80 r
428
+ 2011_09_30/2011_09_30_drive_0028_sync 747 l
429
+ 2011_10_03/2011_10_03_drive_0034_sync 654 r
430
+ 2011_09_30/2011_09_30_drive_0028_sync 1348 r
431
+ 2011_09_26/2011_09_26_drive_0070_sync 150 l
432
+ 2011_10_03/2011_10_03_drive_0034_sync 1998 l
433
+ 2011_09_30/2011_09_30_drive_0033_sync 267 l
434
+ 2011_09_30/2011_09_30_drive_0028_sync 1397 l
435
+ 2011_10_03/2011_10_03_drive_0042_sync 85 r
436
+ 2011_09_30/2011_09_30_drive_0033_sync 1400 r
437
+ 2011_09_30/2011_09_30_drive_0034_sync 528 r
438
+ 2011_09_29/2011_09_29_drive_0004_sync 274 l
439
+ 2011_09_30/2011_09_30_drive_0033_sync 613 r
440
+ 2011_09_26/2011_09_26_drive_0061_sync 306 l
441
+ 2011_09_26/2011_09_26_drive_0061_sync 130 l
442
+ 2011_09_30/2011_09_30_drive_0028_sync 966 r
443
+ 2011_09_30/2011_09_30_drive_0028_sync 1593 l
444
+ 2011_09_30/2011_09_30_drive_0033_sync 1573 r
445
+ 2011_10_03/2011_10_03_drive_0034_sync 2477 l
446
+ 2011_09_26/2011_09_26_drive_0091_sync 190 l
447
+ 2011_09_30/2011_09_30_drive_0028_sync 329 l
448
+ 2011_10_03/2011_10_03_drive_0034_sync 2460 l
449
+ 2011_10_03/2011_10_03_drive_0034_sync 3450 r
450
+ 2011_09_30/2011_09_30_drive_0028_sync 2133 r
451
+ 2011_09_26/2011_09_26_drive_0019_sync 280 r
452
+ 2011_09_26/2011_09_26_drive_0005_sync 142 r
453
+ 2011_09_30/2011_09_30_drive_0028_sync 1145 r
454
+ 2011_09_30/2011_09_30_drive_0033_sync 641 l
455
+ 2011_10_03/2011_10_03_drive_0042_sync 656 l
456
+ 2011_09_26/2011_09_26_drive_0019_sync 457 r
457
+ 2011_09_26/2011_09_26_drive_0091_sync 311 r
458
+ 2011_09_30/2011_09_30_drive_0033_sync 617 l
459
+ 2011_09_30/2011_09_30_drive_0028_sync 2630 l
460
+ 2011_09_26/2011_09_26_drive_0022_sync 472 r
461
+ 2011_09_26/2011_09_26_drive_0011_sync 42 r
462
+ 2011_09_30/2011_09_30_drive_0020_sync 869 r
463
+ 2011_09_30/2011_09_30_drive_0034_sync 65 l
464
+ 2011_09_26/2011_09_26_drive_0091_sync 190 r
465
+ 2011_09_26/2011_09_26_drive_0015_sync 51 r
466
+ 2011_10_03/2011_10_03_drive_0034_sync 2143 r
467
+ 2011_09_30/2011_09_30_drive_0033_sync 934 r
468
+ 2011_09_30/2011_09_30_drive_0028_sync 2133 l
469
+ 2011_09_30/2011_09_30_drive_0028_sync 993 r
470
+ 2011_09_26/2011_09_26_drive_0017_sync 102 l
471
+ 2011_09_26/2011_09_26_drive_0011_sync 6 l
472
+ 2011_09_26/2011_09_26_drive_0061_sync 142 r
473
+ 2011_09_30/2011_09_30_drive_0034_sync 282 l
474
+ 2011_10_03/2011_10_03_drive_0034_sync 3327 l
475
+ 2011_10_03/2011_10_03_drive_0034_sync 3296 r
476
+ 2011_09_30/2011_09_30_drive_0033_sync 1557 l
477
+ 2011_10_03/2011_10_03_drive_0034_sync 2473 l
478
+ 2011_09_26/2011_09_26_drive_0001_sync 75 r
479
+ 2011_10_03/2011_10_03_drive_0034_sync 1317 r
480
+ 2011_09_30/2011_09_30_drive_0034_sync 142 r
481
+ 2011_09_26/2011_09_26_drive_0087_sync 486 l
482
+ 2011_10_03/2011_10_03_drive_0042_sync 1169 l
483
+ 2011_09_30/2011_09_30_drive_0034_sync 336 l
484
+ 2011_09_30/2011_09_30_drive_0028_sync 463 l
485
+ 2011_09_30/2011_09_30_drive_0034_sync 454 r
486
+ 2011_10_03/2011_10_03_drive_0034_sync 2501 l
487
+ 2011_09_30/2011_09_30_drive_0033_sync 1020 r
488
+ 2011_09_26/2011_09_26_drive_0014_sync 195 l
489
+ 2011_10_03/2011_10_03_drive_0034_sync 1041 l
490
+ 2011_10_03/2011_10_03_drive_0034_sync 3355 r
491
+ 2011_09_26/2011_09_26_drive_0039_sync 336 r
492
+ 2011_09_30/2011_09_30_drive_0028_sync 528 l
493
+ 2011_09_26/2011_09_26_drive_0104_sync 73 l
494
+ 2011_09_30/2011_09_30_drive_0020_sync 942 r
495
+ 2011_09_26/2011_09_26_drive_0032_sync 66 r
496
+ 2011_09_26/2011_09_26_drive_0028_sync 66 l
497
+ 2011_10_03/2011_10_03_drive_0034_sync 3355 l
498
+ 2011_09_26/2011_09_26_drive_0087_sync 636 r
499
+ 2011_09_26/2011_09_26_drive_0035_sync 29 r
500
+ 2011_09_26/2011_09_26_drive_0091_sync 258 l
501
+ 2011_10_03/2011_10_03_drive_0034_sync 3860 r
502
+ 2011_10_03/2011_10_03_drive_0034_sync 3777 r
503
+ 2011_09_26/2011_09_26_drive_0039_sync 249 l
504
+ 2011_09_30/2011_09_30_drive_0028_sync 966 l
505
+ 2011_09_26/2011_09_26_drive_0057_sync 202 l
506
+ 2011_09_26/2011_09_26_drive_0061_sync 24 l
507
+ 2011_09_26/2011_09_26_drive_0087_sync 105 l
508
+ 2011_10_03/2011_10_03_drive_0042_sync 753 l
509
+ 2011_09_30/2011_09_30_drive_0028_sync 868 r
510
+ 2011_09_30/2011_09_30_drive_0034_sync 494 r
511
+ 2011_09_30/2011_09_30_drive_0028_sync 2477 r
512
+ 2011_09_30/2011_09_30_drive_0034_sync 1202 r
513
+ 2011_09_26/2011_09_26_drive_0017_sync 29 r
514
+ 2011_09_26/2011_09_26_drive_0087_sync 566 r
515
+ 2011_09_26/2011_09_26_drive_0039_sync 19 l
516
+ 2011_09_30/2011_09_30_drive_0028_sync 1332 l
517
+ 2011_09_26/2011_09_26_drive_0079_sync 41 r
518
+ 2011_09_26/2011_09_26_drive_0057_sync 9 r
519
+ 2011_10_03/2011_10_03_drive_0034_sync 2675 r
520
+ 2011_09_30/2011_09_30_drive_0033_sync 1149 l
521
+ 2011_09_30/2011_09_30_drive_0028_sync 4998 l
522
+ 2011_09_30/2011_09_30_drive_0028_sync 2587 l
523
+ 2011_09_26/2011_09_26_drive_0022_sync 471 r
524
+ 2011_09_26/2011_09_26_drive_0087_sync 725 l
525
+ 2011_09_26/2011_09_26_drive_0035_sync 58 l
526
+ 2011_09_30/2011_09_30_drive_0028_sync 4283 r
527
+ 2011_09_30/2011_09_30_drive_0028_sync 3760 r
528
+ 2011_09_30/2011_09_30_drive_0028_sync 3820 l
529
+ 2011_09_30/2011_09_30_drive_0028_sync 357 l
530
+ 2011_09_26/2011_09_26_drive_0087_sync 607 l
531
+ 2011_10_03/2011_10_03_drive_0034_sync 3450 l
532
+ 2011_09_30/2011_09_30_drive_0033_sync 912 l
533
+ 2011_09_26/2011_09_26_drive_0005_sync 47 r
534
+ 2011_09_26/2011_09_26_drive_0039_sync 386 r
535
+ 2011_09_26/2011_09_26_drive_0070_sync 343 r
536
+ 2011_10_03/2011_10_03_drive_0042_sync 294 l
537
+ 2011_09_30/2011_09_30_drive_0028_sync 1561 r
538
+ 2011_09_26/2011_09_26_drive_0057_sync 55 l
539
+ 2011_09_26/2011_09_26_drive_0015_sync 11 l
540
+ 2011_09_30/2011_09_30_drive_0028_sync 1573 l
541
+ 2011_09_29/2011_09_29_drive_0004_sync 2 l
542
+ 2011_10_03/2011_10_03_drive_0034_sync 2730 l
543
+ 2011_09_26/2011_09_26_drive_0061_sync 437 l
544
+ 2011_09_26/2011_09_26_drive_0070_sync 67 r
545
+ 2011_09_26/2011_09_26_drive_0015_sync 11 r
546
+ 2011_09_26/2011_09_26_drive_0091_sync 226 l
547
+ 2011_09_26/2011_09_26_drive_0022_sync 746 l
548
+ 2011_09_29/2011_09_29_drive_0004_sync 81 l
549
+ 2011_09_30/2011_09_30_drive_0028_sync 4254 r
550
+ 2011_09_30/2011_09_30_drive_0028_sync 2611 l
551
+ 2011_09_26/2011_09_26_drive_0051_sync 386 l
552
+ 2011_09_30/2011_09_30_drive_0034_sync 663 r
553
+ 2011_09_26/2011_09_26_drive_0022_sync 252 l
554
+ 2011_09_30/2011_09_30_drive_0028_sync 2920 r
555
+ 2011_09_30/2011_09_30_drive_0028_sync 1168 r
556
+ 2011_09_26/2011_09_26_drive_0095_sync 95 r
557
+ 2011_09_26/2011_09_26_drive_0011_sync 122 l
558
+ 2011_10_03/2011_10_03_drive_0034_sync 1118 r
559
+ 2011_09_30/2011_09_30_drive_0020_sync 165 r
560
+ 2011_09_30/2011_09_30_drive_0034_sync 835 l
561
+ 2011_09_30/2011_09_30_drive_0028_sync 838 l
562
+ 2011_09_30/2011_09_30_drive_0033_sync 738 r
563
+ 2011_09_26/2011_09_26_drive_0022_sync 480 r
564
+ 2011_09_26/2011_09_26_drive_0022_sync 656 l
565
+ 2011_09_30/2011_09_30_drive_0033_sync 687 l
566
+ 2011_09_30/2011_09_30_drive_0020_sync 392 l
567
+ 2011_09_30/2011_09_30_drive_0028_sync 4424 r
568
+ 2011_10_03/2011_10_03_drive_0034_sync 4612 l
569
+ 2011_09_30/2011_09_30_drive_0028_sync 528 r
570
+ 2011_10_03/2011_10_03_drive_0042_sync 807 r
571
+ 2011_09_30/2011_09_30_drive_0028_sync 5066 l
572
+ 2011_10_03/2011_10_03_drive_0034_sync 3296 l
573
+ 2011_09_26/2011_09_26_drive_0028_sync 44 l
574
+ 2011_10_03/2011_10_03_drive_0034_sync 916 l
575
+ 2011_09_30/2011_09_30_drive_0034_sync 1009 l
576
+ 2011_09_26/2011_09_26_drive_0011_sync 224 l
577
+ 2011_10_03/2011_10_03_drive_0034_sync 2769 l
578
+ 2011_09_30/2011_09_30_drive_0034_sync 454 l
579
+ 2011_09_26/2011_09_26_drive_0091_sync 165 l
580
+ 2011_09_30/2011_09_30_drive_0033_sync 1020 l
581
+ 2011_09_26/2011_09_26_drive_0091_sync 90 r
582
+ 2011_09_30/2011_09_30_drive_0028_sync 1115 l
583
+ 2011_09_26/2011_09_26_drive_0015_sync 108 r
584
+ 2011_10_03/2011_10_03_drive_0042_sync 787 l
585
+ 2011_10_03/2011_10_03_drive_0034_sync 4117 r
586
+ 2011_09_26/2011_09_26_drive_0095_sync 138 l
587
+ 2011_09_30/2011_09_30_drive_0033_sync 216 l
588
+ 2011_09_26/2011_09_26_drive_0051_sync 413 l
589
+ 2011_09_26/2011_09_26_drive_0014_sync 281 r
590
+ 2011_09_26/2011_09_26_drive_0032_sync 66 l
591
+ 2011_09_30/2011_09_30_drive_0028_sync 4337 r
592
+ 2011_09_29/2011_09_29_drive_0004_sync 57 l
593
+ 2011_09_30/2011_09_30_drive_0028_sync 2941 r
594
+ 2011_10_03/2011_10_03_drive_0042_sync 1053 r
595
+ 2011_09_26/2011_09_26_drive_0051_sync 37 r
596
+ 2011_10_03/2011_10_03_drive_0034_sync 4057 l
597
+ 2011_09_30/2011_09_30_drive_0028_sync 3114 l
598
+ 2011_09_30/2011_09_30_drive_0028_sync 2295 l
599
+ 2011_09_26/2011_09_26_drive_0014_sync 195 r
600
+ 2011_10_03/2011_10_03_drive_0034_sync 4057 r
601
+ 2011_09_26/2011_09_26_drive_0019_sync 112 r
602
+ 2011_09_26/2011_09_26_drive_0061_sync 518 r
603
+ 2011_10_03/2011_10_03_drive_0042_sync 175 l
604
+ 2011_09_26/2011_09_26_drive_0070_sync 8 r
605
+ 2011_09_26/2011_09_26_drive_0057_sync 276 r
606
+ 2011_10_03/2011_10_03_drive_0034_sync 130 r
607
+ 2011_09_30/2011_09_30_drive_0028_sync 2985 l
608
+ 2011_09_30/2011_09_30_drive_0028_sync 2076 r
609
+ 2011_10_03/2011_10_03_drive_0034_sync 463 r
610
+ 2011_09_26/2011_09_26_drive_0028_sync 65 l
611
+ 2011_10_03/2011_10_03_drive_0034_sync 3882 l
612
+ 2011_10_03/2011_10_03_drive_0034_sync 2401 l
613
+ 2011_10_03/2011_10_03_drive_0034_sync 3394 l
614
+ 2011_10_03/2011_10_03_drive_0034_sync 3628 r
615
+ 2011_09_30/2011_09_30_drive_0028_sync 5000 r
616
+ 2011_09_26/2011_09_26_drive_0087_sync 377 r
617
+ 2011_10_03/2011_10_03_drive_0034_sync 2253 l
618
+ 2011_10_03/2011_10_03_drive_0034_sync 4400 r
619
+ 2011_09_26/2011_09_26_drive_0019_sync 112 l
620
+ 2011_09_30/2011_09_30_drive_0033_sync 527 l
621
+ 2011_09_30/2011_09_30_drive_0028_sync 1801 r
622
+ 2011_09_30/2011_09_30_drive_0020_sync 13 r
623
+ 2011_09_26/2011_09_26_drive_0051_sync 175 r
624
+ 2011_09_26/2011_09_26_drive_0104_sync 227 l
625
+ 2011_09_26/2011_09_26_drive_0015_sync 61 r
626
+ 2011_10_03/2011_10_03_drive_0034_sync 4570 r
627
+ 2011_10_03/2011_10_03_drive_0034_sync 3735 l
628
+ 2011_09_26/2011_09_26_drive_0057_sync 90 l
629
+ 2011_09_30/2011_09_30_drive_0028_sync 1930 r
630
+ 2011_10_03/2011_10_03_drive_0034_sync 4288 l
631
+ 2011_10_03/2011_10_03_drive_0034_sync 955 r
632
+ 2011_09_30/2011_09_30_drive_0028_sync 1021 l
633
+ 2011_09_26/2011_09_26_drive_0070_sync 77 r
634
+ 2011_09_26/2011_09_26_drive_0061_sync 166 r
635
+ 2011_09_26/2011_09_26_drive_0011_sync 181 r
636
+ 2011_09_26/2011_09_26_drive_0001_sync 3 l
637
+ 2011_10_03/2011_10_03_drive_0042_sync 830 r
638
+ 2011_10_03/2011_10_03_drive_0034_sync 1679 r
639
+ 2011_09_26/2011_09_26_drive_0011_sync 27 l
640
+ 2011_09_30/2011_09_30_drive_0020_sync 715 r
641
+ 2011_09_26/2011_09_26_drive_0087_sync 72 l
642
+ 2011_09_26/2011_09_26_drive_0032_sync 148 r
643
+ 2011_09_30/2011_09_30_drive_0020_sync 696 l
644
+ 2011_09_26/2011_09_26_drive_0091_sync 235 l
645
+ 2011_10_03/2011_10_03_drive_0034_sync 1189 r
646
+ 2011_09_26/2011_09_26_drive_0057_sync 180 l
647
+ 2011_09_26/2011_09_26_drive_0070_sync 8 l
648
+ 2011_09_30/2011_09_30_drive_0028_sync 3860 r
649
+ 2011_09_30/2011_09_30_drive_0028_sync 2426 r
650
+ 2011_09_30/2011_09_30_drive_0033_sync 738 l
651
+ 2011_09_30/2011_09_30_drive_0028_sync 3638 r
652
+ 2011_09_30/2011_09_30_drive_0033_sync 424 l
653
+ 2011_09_26/2011_09_26_drive_0039_sync 104 r
654
+ 2011_10_03/2011_10_03_drive_0034_sync 2244 l
655
+ 2011_09_26/2011_09_26_drive_0022_sync 779 l
656
+ 2011_09_26/2011_09_26_drive_0017_sync 102 r
657
+ 2011_09_30/2011_09_30_drive_0028_sync 425 l
658
+ 2011_09_30/2011_09_30_drive_0028_sync 85 r
659
+ 2011_09_30/2011_09_30_drive_0020_sync 839 l
660
+ 2011_09_26/2011_09_26_drive_0104_sync 277 l
661
+ 2011_10_03/2011_10_03_drive_0042_sync 204 r
662
+ 2011_09_30/2011_09_30_drive_0033_sync 309 r
663
+ 2011_09_30/2011_09_30_drive_0028_sync 2904 l
664
+ 2011_10_03/2011_10_03_drive_0034_sync 2730 r
665
+ 2011_09_26/2011_09_26_drive_0019_sync 321 r
666
+ 2011_09_26/2011_09_26_drive_0032_sync 77 l
667
+ 2011_09_30/2011_09_30_drive_0034_sync 65 r
668
+ 2011_10_03/2011_10_03_drive_0042_sync 819 r
669
+ 2011_10_03/2011_10_03_drive_0034_sync 2501 r
670
+ 2011_09_26/2011_09_26_drive_0011_sync 122 r
671
+ 2011_09_26/2011_09_26_drive_0039_sync 227 r
672
+ 2011_09_26/2011_09_26_drive_0087_sync 370 r
673
+ 2011_09_30/2011_09_30_drive_0028_sync 3272 l
674
+ 2011_09_26/2011_09_26_drive_0051_sync 321 l
675
+ 2011_09_30/2011_09_30_drive_0020_sync 347 r
676
+ 2011_09_26/2011_09_26_drive_0019_sync 288 r
677
+ 2011_09_30/2011_09_30_drive_0028_sync 2382 r
678
+ 2011_09_26/2011_09_26_drive_0087_sync 661 l
679
+ 2011_09_30/2011_09_30_drive_0033_sync 1400 l
680
+ 2011_10_03/2011_10_03_drive_0034_sync 4570 l
681
+ 2011_09_26/2011_09_26_drive_0032_sync 195 l
682
+ 2011_09_26/2011_09_26_drive_0022_sync 615 r
683
+ 2011_09_26/2011_09_26_drive_0014_sync 274 r
684
+ 2011_09_30/2011_09_30_drive_0028_sync 4283 l
685
+ 2011_10_03/2011_10_03_drive_0034_sync 2467 r
686
+ 2011_09_26/2011_09_26_drive_0095_sync 1 r
687
+ 2011_09_30/2011_09_30_drive_0028_sync 771 l
688
+ 2011_09_30/2011_09_30_drive_0028_sync 1376 l
689
+ 2011_09_30/2011_09_30_drive_0028_sync 1634 l
690
+ 2011_10_03/2011_10_03_drive_0034_sync 1811 l
691
+ 2011_09_26/2011_09_26_drive_0087_sync 72 r
692
+ 2011_10_03/2011_10_03_drive_0034_sync 2410 l
693
+ 2011_09_30/2011_09_30_drive_0028_sync 980 r
694
+ 2011_09_30/2011_09_30_drive_0033_sync 342 r
695
+ 2011_09_26/2011_09_26_drive_0087_sync 628 r
696
+ 2011_09_30/2011_09_30_drive_0028_sync 3408 l
697
+ 2011_09_26/2011_09_26_drive_0057_sync 123 l
698
+ 2011_09_30/2011_09_30_drive_0028_sync 4207 l
699
+ 2011_10_03/2011_10_03_drive_0042_sync 1154 l
700
+ 2011_09_30/2011_09_30_drive_0020_sync 90 r
701
+ 2011_09_26/2011_09_26_drive_0022_sync 24 l
702
+ 2011_10_03/2011_10_03_drive_0034_sync 3005 l
703
+ 2011_10_03/2011_10_03_drive_0042_sync 672 l
704
+ 2011_09_26/2011_09_26_drive_0014_sync 218 r
705
+ 2011_09_30/2011_09_30_drive_0028_sync 5000 l
706
+ 2011_10_03/2011_10_03_drive_0034_sync 3978 l
707
+ 2011_09_30/2011_09_30_drive_0034_sync 780 r
708
+ 2011_09_30/2011_09_30_drive_0028_sync 838 r
709
+ 2011_09_26/2011_09_26_drive_0061_sync 579 r
710
+ 2011_09_26/2011_09_26_drive_0087_sync 187 l
711
+ 2011_09_30/2011_09_30_drive_0028_sync 3925 r
712
+ 2011_09_30/2011_09_30_drive_0033_sync 1116 r
713
+ 2011_09_26/2011_09_26_drive_0051_sync 399 l
714
+ 2011_09_30/2011_09_30_drive_0033_sync 13 r
715
+ 2011_09_26/2011_09_26_drive_0028_sync 211 l
716
+ 2011_09_30/2011_09_30_drive_0028_sync 1021 r
717
+ 2011_09_30/2011_09_30_drive_0028_sync 2833 r
718
+ 2011_09_30/2011_09_30_drive_0020_sync 347 l
719
+ 2011_09_30/2011_09_30_drive_0033_sync 1045 r
720
+ 2011_09_26/2011_09_26_drive_0035_sync 84 r
721
+ 2011_09_30/2011_09_30_drive_0028_sync 669 r
722
+ 2011_09_26/2011_09_26_drive_0087_sync 182 l
723
+ 2011_09_26/2011_09_26_drive_0032_sync 385 r
724
+ 2011_10_03/2011_10_03_drive_0034_sync 1517 l
725
+ 2011_10_03/2011_10_03_drive_0042_sync 1154 r
726
+ 2011_10_03/2011_10_03_drive_0042_sync 571 l
727
+ 2011_10_03/2011_10_03_drive_0042_sync 1169 r
728
+ 2011_09_30/2011_09_30_drive_0020_sync 190 r
729
+ 2011_09_26/2011_09_26_drive_0104_sync 279 l
730
+ 2011_09_30/2011_09_30_drive_0028_sync 1450 r
731
+ 2011_09_26/2011_09_26_drive_0060_sync 45 l
732
+ 2011_09_30/2011_09_30_drive_0033_sync 76 l
733
+ 2011_09_26/2011_09_26_drive_0022_sync 615 l
734
+ 2011_09_30/2011_09_30_drive_0028_sync 967 r
735
+ 2011_10_03/2011_10_03_drive_0034_sync 4149 l
736
+ 2011_09_30/2011_09_30_drive_0034_sync 1000 l
737
+ 2011_09_30/2011_09_30_drive_0028_sync 3580 l
738
+ 2011_09_30/2011_09_30_drive_0028_sync 861 l
739
+ 2011_09_26/2011_09_26_drive_0060_sync 16 r
740
+ 2011_10_03/2011_10_03_drive_0034_sync 2769 r
741
+ 2011_09_26/2011_09_26_drive_0039_sync 379 l
742
+ 2011_09_30/2011_09_30_drive_0028_sync 2376 l
743
+ 2011_09_30/2011_09_30_drive_0034_sync 769 r
744
+ 2011_10_03/2011_10_03_drive_0034_sync 130 l
745
+ 2011_09_26/2011_09_26_drive_0014_sync 219 r
746
+ 2011_09_28/2011_09_28_drive_0001_sync 95 l
747
+ 2011_10_03/2011_10_03_drive_0042_sync 580 l
748
+ 2011_09_30/2011_09_30_drive_0028_sync 4337 l
749
+ 2011_09_30/2011_09_30_drive_0028_sync 4403 l
750
+ 2011_09_26/2011_09_26_drive_0022_sync 245 l
751
+ 2011_10_03/2011_10_03_drive_0034_sync 3394 r
752
+ 2011_09_30/2011_09_30_drive_0034_sync 703 l
753
+ 2011_10_03/2011_10_03_drive_0034_sync 3944 r
754
+ 2011_10_03/2011_10_03_drive_0034_sync 1811 r
755
+ 2011_09_30/2011_09_30_drive_0020_sync 339 r
756
+ 2011_10_03/2011_10_03_drive_0042_sync 244 r
757
+ 2011_09_26/2011_09_26_drive_0104_sync 120 l
758
+ 2011_09_30/2011_09_30_drive_0028_sync 4896 r
759
+ 2011_10_03/2011_10_03_drive_0034_sync 3926 l
760
+ 2011_10_03/2011_10_03_drive_0042_sync 696 l
761
+ 2011_10_03/2011_10_03_drive_0042_sync 851 l
762
+ 2011_09_26/2011_09_26_drive_0019_sync 32 l
763
+ 2011_09_26/2011_09_26_drive_0001_sync 0 r
764
+ 2011_10_03/2011_10_03_drive_0034_sync 2051 l
765
+ 2011_09_30/2011_09_30_drive_0028_sync 2879 r
766
+ 2011_09_26/2011_09_26_drive_0104_sync 279 r
767
+ 2011_09_30/2011_09_30_drive_0028_sync 3151 l
768
+ 2011_09_26/2011_09_26_drive_0018_sync 37 r
769
+ 2011_09_30/2011_09_30_drive_0034_sync 441 r
770
+ 2011_09_30/2011_09_30_drive_0033_sync 31 l
771
+ 2011_09_26/2011_09_26_drive_0070_sync 350 l
772
+ 2011_10_03/2011_10_03_drive_0034_sync 289 r
773
+ 2011_10_03/2011_10_03_drive_0034_sync 521 r
774
+ 2011_09_26/2011_09_26_drive_0019_sync 32 r
775
+ 2011_09_26/2011_09_26_drive_0070_sync 343 l
776
+ 2011_09_26/2011_09_26_drive_0032_sync 43 r
777
+ 2011_10_03/2011_10_03_drive_0034_sync 1540 r
778
+ 2011_09_26/2011_09_26_drive_0061_sync 673 l
779
+ 2011_09_26/2011_09_26_drive_0015_sync 125 r
780
+ 2011_09_30/2011_09_30_drive_0028_sync 4369 r
781
+ 2011_09_30/2011_09_30_drive_0028_sync 2985 r
782
+ 2011_10_03/2011_10_03_drive_0042_sync 455 r
783
+ 2011_09_30/2011_09_30_drive_0033_sync 583 r
784
+ 2011_09_26/2011_09_26_drive_0028_sync 342 r
785
+ 2011_09_30/2011_09_30_drive_0028_sync 961 l
786
+ 2011_10_03/2011_10_03_drive_0042_sync 512 r
787
+ 2011_09_29/2011_09_29_drive_0004_sync 321 r
788
+ 2011_09_30/2011_09_30_drive_0033_sync 520 l
789
+ 2011_09_26/2011_09_26_drive_0018_sync 127 l
790
+ 2011_10_03/2011_10_03_drive_0034_sync 605 r
791
+ 2011_10_03/2011_10_03_drive_0034_sync 3188 l
792
+ 2011_09_30/2011_09_30_drive_0028_sync 2361 l
793
+ 2011_09_30/2011_09_30_drive_0020_sync 619 r
794
+ 2011_09_26/2011_09_26_drive_0022_sync 616 l
795
+ 2011_09_26/2011_09_26_drive_0061_sync 24 r
796
+ 2011_09_26/2011_09_26_drive_0087_sync 543 l
797
+ 2011_09_26/2011_09_26_drive_0051_sync 322 l
798
+ 2011_10_03/2011_10_03_drive_0034_sync 2244 r
799
+ 2011_09_26/2011_09_26_drive_0087_sync 666 l
800
+ 2011_09_26/2011_09_26_drive_0014_sync 183 r
801
+ 2011_09_30/2011_09_30_drive_0028_sync 2941 l
802
+ 2011_09_26/2011_09_26_drive_0032_sync 134 l
803
+ 2011_09_30/2011_09_30_drive_0033_sync 259 l
804
+ 2011_09_28/2011_09_28_drive_0001_sync 13 l
805
+ 2011_10_03/2011_10_03_drive_0034_sync 914 l
806
+ 2011_09_30/2011_09_30_drive_0033_sync 216 r
807
+ 2011_09_26/2011_09_26_drive_0087_sync 452 r
808
+ 2011_10_03/2011_10_03_drive_0034_sync 4627 r
809
+ 2011_10_03/2011_10_03_drive_0034_sync 441 l
810
+ 2011_10_03/2011_10_03_drive_0034_sync 1070 r
811
+ 2011_09_26/2011_09_26_drive_0014_sync 96 l
812
+ 2011_09_30/2011_09_30_drive_0028_sync 4199 l
813
+ 2011_10_03/2011_10_03_drive_0034_sync 4478 l
814
+ 2011_09_26/2011_09_26_drive_0035_sync 90 l
815
+ 2011_09_30/2011_09_30_drive_0034_sync 354 l
816
+ 2011_09_30/2011_09_30_drive_0028_sync 2605 r
817
+ 2011_09_30/2011_09_30_drive_0028_sync 3853 l
818
+ 2011_09_26/2011_09_26_drive_0015_sync 51 l
819
+ 2011_09_30/2011_09_30_drive_0033_sync 349 l
820
+ 2011_09_26/2011_09_26_drive_0032_sync 61 r
821
+ 2011_09_26/2011_09_26_drive_0017_sync 23 r
822
+ 2011_10_03/2011_10_03_drive_0034_sync 578 l
823
+ 2011_09_26/2011_09_26_drive_0022_sync 471 l
824
+ 2011_09_30/2011_09_30_drive_0033_sync 1332 l
825
+ 2011_09_30/2011_09_30_drive_0028_sync 4491 l
826
+ 2011_09_30/2011_09_30_drive_0028_sync 62 l
827
+ 2011_09_26/2011_09_26_drive_0011_sync 216 r
828
+ 2011_09_28/2011_09_28_drive_0001_sync 31 r
829
+ 2011_09_30/2011_09_30_drive_0028_sync 1093 r
830
+ 2011_09_30/2011_09_30_drive_0028_sync 3365 r
831
+ 2011_09_30/2011_09_30_drive_0020_sync 305 r
832
+ 2011_09_30/2011_09_30_drive_0020_sync 154 r
833
+ 2011_09_26/2011_09_26_drive_0051_sync 251 l
834
+ 2011_10_03/2011_10_03_drive_0042_sync 807 l
835
+ 2011_09_30/2011_09_30_drive_0033_sync 737 l
836
+ 2011_09_26/2011_09_26_drive_0028_sync 211 r
837
+ 2011_09_26/2011_09_26_drive_0018_sync 127 r
838
+ 2011_09_30/2011_09_30_drive_0028_sync 701 l
839
+ 2011_09_30/2011_09_30_drive_0028_sync 3863 l
840
+ 2011_09_30/2011_09_30_drive_0028_sync 493 l
841
+ 2011_09_26/2011_09_26_drive_0019_sync 474 r
842
+ 2011_09_30/2011_09_30_drive_0028_sync 2274 r
843
+ 2011_09_30/2011_09_30_drive_0033_sync 143 l
844
+ 2011_09_26/2011_09_26_drive_0022_sync 440 r
845
+ 2011_09_30/2011_09_30_drive_0020_sync 231 l
846
+ 2011_09_30/2011_09_30_drive_0033_sync 1436 l
847
+ 2011_10_03/2011_10_03_drive_0042_sync 777 l
848
+ 2011_09_30/2011_09_30_drive_0028_sync 2879 l
849
+ 2011_09_30/2011_09_30_drive_0028_sync 436 l
850
+ 2011_09_30/2011_09_30_drive_0033_sync 803 l
851
+ 2011_09_30/2011_09_30_drive_0020_sync 224 r
852
+ 2011_09_30/2011_09_30_drive_0028_sync 2805 r
853
+ 2011_10_03/2011_10_03_drive_0042_sync 580 r
854
+ 2011_09_30/2011_09_30_drive_0028_sync 4503 l
855
+ 2011_09_30/2011_09_30_drive_0033_sync 1493 l
856
+ 2011_09_26/2011_09_26_drive_0087_sync 607 r
857
+ 2011_10_03/2011_10_03_drive_0034_sync 3747 l
858
+ 2011_10_03/2011_10_03_drive_0042_sync 851 r
859
+ 2011_09_26/2011_09_26_drive_0015_sync 61 l
860
+ 2011_09_30/2011_09_30_drive_0033_sync 737 r
861
+ 2011_10_03/2011_10_03_drive_0034_sync 4051 r
862
+ 2011_10_03/2011_10_03_drive_0042_sync 1085 l
863
+ 2011_10_03/2011_10_03_drive_0034_sync 4452 l
864
+ 2011_09_30/2011_09_30_drive_0028_sync 697 l
865
+ 2011_09_30/2011_09_30_drive_0033_sync 1531 r
866
+ 2011_10_03/2011_10_03_drive_0034_sync 1577 l
867
+ 2011_10_03/2011_10_03_drive_0042_sync 1151 l
868
+ 2011_09_26/2011_09_26_drive_0022_sync 440 l
869
+ 2011_10_03/2011_10_03_drive_0042_sync 1109 r
870
+ 2011_09_26/2011_09_26_drive_0022_sync 311 l
871
+ 2011_09_30/2011_09_30_drive_0028_sync 1550 l
872
+ 2011_09_30/2011_09_30_drive_0028_sync 308 r
873
+ 2011_09_30/2011_09_30_drive_0034_sync 851 l
874
+ 2011_09_26/2011_09_26_drive_0028_sync 66 r
875
+ 2011_09_26/2011_09_26_drive_0017_sync 29 l
876
+ 2011_09_26/2011_09_26_drive_0014_sync 251 l
877
+ 2011_09_30/2011_09_30_drive_0028_sync 5141 r
878
+ 2011_09_26/2011_09_26_drive_0061_sync 687 r
879
+ 2011_09_30/2011_09_30_drive_0020_sync 715 l
880
+ 2011_09_30/2011_09_30_drive_0034_sync 236 r
881
+ 2011_09_30/2011_09_30_drive_0034_sync 1024 l
882
+ 2011_09_26/2011_09_26_drive_0061_sync 106 l
883
+ 2011_09_30/2011_09_30_drive_0034_sync 996 r
884
+ 2011_09_30/2011_09_30_drive_0028_sync 588 l
885
+ 2011_10_03/2011_10_03_drive_0042_sync 879 r
886
+ 2011_09_26/2011_09_26_drive_0057_sync 9 l
887
+ 2011_10_03/2011_10_03_drive_0034_sync 386 r
888
+ 2011_09_30/2011_09_30_drive_0033_sync 421 l
889
+ 2011_10_03/2011_10_03_drive_0034_sync 2508 l
890
+ 2011_10_03/2011_10_03_drive_0034_sync 1499 l
891
+ 2011_09_30/2011_09_30_drive_0028_sync 702 l
892
+ 2011_10_03/2011_10_03_drive_0042_sync 174 l
893
+ 2011_09_30/2011_09_30_drive_0028_sync 5066 r
894
+ 2011_10_03/2011_10_03_drive_0034_sync 955 l
895
+ 2011_09_30/2011_09_30_drive_0034_sync 697 r
896
+ 2011_10_03/2011_10_03_drive_0034_sync 645 r
897
+ 2011_10_03/2011_10_03_drive_0034_sync 762 l
898
+ 2011_09_30/2011_09_30_drive_0028_sync 333 l
899
+ 2011_09_30/2011_09_30_drive_0033_sync 200 r
900
+ 2011_09_30/2011_09_30_drive_0028_sync 4085 r
901
+ 2011_09_30/2011_09_30_drive_0028_sync 2625 l
902
+ 2011_09_26/2011_09_26_drive_0039_sync 151 r
903
+ 2011_09_30/2011_09_30_drive_0033_sync 31 r
904
+ 2011_09_30/2011_09_30_drive_0028_sync 2362 r
905
+ 2011_09_26/2011_09_26_drive_0022_sync 400 r
906
+ 2011_09_30/2011_09_30_drive_0028_sync 2676 l
907
+ 2011_09_26/2011_09_26_drive_0014_sync 46 l
908
+ 2011_09_26/2011_09_26_drive_0015_sync 108 l
909
+ 2011_09_26/2011_09_26_drive_0061_sync 379 r
910
+ 2011_09_26/2011_09_26_drive_0039_sync 336 l
911
+ 2011_09_30/2011_09_30_drive_0028_sync 1093 l
912
+ 2011_09_30/2011_09_30_drive_0028_sync 2630 r
913
+ 2011_09_26/2011_09_26_drive_0091_sync 322 l
914
+ 2011_09_26/2011_09_26_drive_0057_sync 123 r
915
+ 2011_09_30/2011_09_30_drive_0028_sync 5168 r
916
+ 2011_09_30/2011_09_30_drive_0034_sync 1047 l
917
+ 2011_09_26/2011_09_26_drive_0014_sync 22 r
918
+ 2011_09_30/2011_09_30_drive_0034_sync 571 r
919
+ 2011_10_03/2011_10_03_drive_0034_sync 3909 r
920
+ 2011_09_30/2011_09_30_drive_0028_sync 2625 r
921
+ 2011_09_30/2011_09_30_drive_0034_sync 1009 r
922
+ 2011_09_30/2011_09_30_drive_0028_sync 1820 l
923
+ 2011_10_03/2011_10_03_drive_0034_sync 2473 r
924
+ 2011_10_03/2011_10_03_drive_0034_sync 880 r
925
+ 2011_09_30/2011_09_30_drive_0028_sync 1885 r
926
+ 2011_10_03/2011_10_03_drive_0034_sync 4592 r
927
+ 2011_09_26/2011_09_26_drive_0061_sync 562 l
928
+ 2011_09_26/2011_09_26_drive_0087_sync 255 l
929
+ 2011_09_26/2011_09_26_drive_0019_sync 207 l
930
+ 2011_09_29/2011_09_29_drive_0004_sync 2 r
931
+ 2011_09_30/2011_09_30_drive_0033_sync 1436 r
932
+ 2011_09_30/2011_09_30_drive_0033_sync 259 r
933
+ 2011_09_30/2011_09_30_drive_0028_sync 3051 r
934
+ 2011_09_26/2011_09_26_drive_0057_sync 299 r
935
+ 2011_10_03/2011_10_03_drive_0034_sync 3718 r
936
+ 2011_09_30/2011_09_30_drive_0033_sync 912 r
937
+ 2011_09_26/2011_09_26_drive_0039_sync 249 r
938
+ 2011_09_30/2011_09_30_drive_0020_sync 955 l
939
+ 2011_09_26/2011_09_26_drive_0104_sync 270 l
940
+ 2011_10_03/2011_10_03_drive_0034_sync 2932 r
941
+ 2011_10_03/2011_10_03_drive_0034_sync 4196 r
942
+ 2011_09_30/2011_09_30_drive_0034_sync 1047 r
943
+ 2011_09_26/2011_09_26_drive_0087_sync 105 r
944
+ 2011_10_03/2011_10_03_drive_0042_sync 273 l
945
+ 2011_10_03/2011_10_03_drive_0042_sync 201 r
946
+ 2011_09_30/2011_09_30_drive_0028_sync 755 l
947
+ 2011_09_30/2011_09_30_drive_0028_sync 1438 r
948
+ 2011_09_30/2011_09_30_drive_0028_sync 3634 r
949
+ 2011_09_30/2011_09_30_drive_0028_sync 697 r
950
+ 2011_09_30/2011_09_30_drive_0028_sync 1573 r
951
+ 2011_10_03/2011_10_03_drive_0034_sync 2460 r
952
+ 2011_09_26/2011_09_26_drive_0104_sync 73 r
953
+ 2011_10_03/2011_10_03_drive_0034_sync 1577 r
954
+ 2011_09_30/2011_09_30_drive_0028_sync 3925 l
955
+ 2011_10_03/2011_10_03_drive_0034_sync 4014 l
956
+ 2011_09_30/2011_09_30_drive_0033_sync 243 r
957
+ 2011_09_30/2011_09_30_drive_0034_sync 316 r
958
+ 2011_09_30/2011_09_30_drive_0028_sync 4403 r
959
+ 2011_09_26/2011_09_26_drive_0014_sync 251 r
960
+ 2011_09_26/2011_09_26_drive_0032_sync 147 l
961
+ 2011_09_26/2011_09_26_drive_0014_sync 182 l
962
+ 2011_10_03/2011_10_03_drive_0034_sync 1873 l
963
+ 2011_10_03/2011_10_03_drive_0034_sync 2439 l
964
+ 2011_09_26/2011_09_26_drive_0051_sync 229 l
965
+ 2011_10_03/2011_10_03_drive_0042_sync 294 r
966
+ 2011_09_30/2011_09_30_drive_0028_sync 4865 l
967
+ 2011_10_03/2011_10_03_drive_0034_sync 2565 l
968
+ 2011_09_26/2011_09_26_drive_0057_sync 307 r
969
+ 2011_10_03/2011_10_03_drive_0034_sync 4227 r
970
+ 2011_09_26/2011_09_26_drive_0095_sync 28 l
971
+ 2011_09_30/2011_09_30_drive_0028_sync 3581 l
972
+ 2011_09_30/2011_09_30_drive_0028_sync 822 r
973
+ 2011_09_26/2011_09_26_drive_0051_sync 248 l
974
+ 2011_10_03/2011_10_03_drive_0034_sync 2353 r
975
+ 2011_10_03/2011_10_03_drive_0042_sync 563 r
976
+ 2011_09_26/2011_09_26_drive_0019_sync 45 l
977
+ 2011_10_03/2011_10_03_drive_0042_sync 830 l
978
+ 2011_09_26/2011_09_26_drive_0057_sync 80 l
979
+ 2011_09_26/2011_09_26_drive_0032_sync 338 l
980
+ 2011_09_26/2011_09_26_drive_0057_sync 299 l
981
+ 2011_09_26/2011_09_26_drive_0057_sync 180 r
982
+ 2011_09_30/2011_09_30_drive_0033_sync 77 r
983
+ 2011_10_03/2011_10_03_drive_0042_sync 715 l
984
+ 2011_09_26/2011_09_26_drive_0057_sync 202 r
985
+ 2011_09_26/2011_09_26_drive_0014_sync 183 l
986
+ 2011_09_30/2011_09_30_drive_0028_sync 3281 r
987
+ 2011_09_30/2011_09_30_drive_0028_sync 2587 r
988
+ 2011_09_26/2011_09_26_drive_0104_sync 260 l
989
+ 2011_10_03/2011_10_03_drive_0034_sync 1523 l
990
+ 2011_10_03/2011_10_03_drive_0034_sync 4400 l
991
+ 2011_09_30/2011_09_30_drive_0028_sync 2786 l
992
+ 2011_09_26/2011_09_26_drive_0019_sync 457 l
993
+ 2011_09_29/2011_09_29_drive_0004_sync 189 l
994
+ 2011_10_03/2011_10_03_drive_0034_sync 3819 r
995
+ 2011_09_29/2011_09_29_drive_0004_sync 274 r
996
+ 2011_09_26/2011_09_26_drive_0070_sync 116 l
997
+ 2011_09_30/2011_09_30_drive_0028_sync 4381 l
998
+ 2011_09_30/2011_09_30_drive_0028_sync 2676 r
999
+ 2011_09_26/2011_09_26_drive_0022_sync 252 r
1000
+ 2011_10_03/2011_10_03_drive_0034_sync 521 l
1001
+ 2011_10_03/2011_10_03_drive_0042_sync 676 l
1002
+ 2011_09_30/2011_09_30_drive_0028_sync 4656 l
1003
+ 2011_09_26/2011_09_26_drive_0015_sync 156 l
1004
+ 2011_09_30/2011_09_30_drive_0028_sync 4399 l
1005
+ 2011_09_30/2011_09_30_drive_0020_sync 608 l
1006
+ 2011_09_30/2011_09_30_drive_0028_sync 4439 r
1007
+ 2011_09_26/2011_09_26_drive_0051_sync 233 r
1008
+ 2011_09_30/2011_09_30_drive_0028_sync 1696 r
1009
+ 2011_10_03/2011_10_03_drive_0034_sync 1484 r
1010
+ 2011_09_30/2011_09_30_drive_0028_sync 669 l
1011
+ 2011_10_03/2011_10_03_drive_0034_sync 1037 r
1012
+ 2011_09_26/2011_09_26_drive_0087_sync 546 r
1013
+ 2011_09_26/2011_09_26_drive_0022_sync 726 r
1014
+ 2011_09_30/2011_09_30_drive_0028_sync 861 r
1015
+ 2011_09_30/2011_09_30_drive_0033_sync 1433 r
1016
+ 2011_09_26/2011_09_26_drive_0087_sync 543 r
1017
+ 2011_09_30/2011_09_30_drive_0033_sync 1332 r
1018
+ 2011_09_26/2011_09_26_drive_0057_sync 276 l
1019
+ 2011_09_30/2011_09_30_drive_0028_sync 75 r
1020
+ 2011_09_30/2011_09_30_drive_0034_sync 441 l
1021
+ 2011_09_30/2011_09_30_drive_0028_sync 3175 l
1022
+ 2011_10_03/2011_10_03_drive_0034_sync 2723 l
1023
+ 2011_09_26/2011_09_26_drive_0019_sync 207 r
1024
+ 2011_09_26/2011_09_26_drive_0070_sync 77 l
1025
+ 2011_10_03/2011_10_03_drive_0042_sync 300 l
1026
+ 2011_09_30/2011_09_30_drive_0028_sync 747 r
1027
+ 2011_09_26/2011_09_26_drive_0061_sync 578 r
1028
+ 2011_09_30/2011_09_30_drive_0028_sync 5096 l
1029
+ 2011_09_26/2011_09_26_drive_0015_sync 0 r
1030
+ 2011_09_26/2011_09_26_drive_0014_sync 19 l
1031
+ 2011_09_26/2011_09_26_drive_0011_sync 25 l
1032
+ 2011_09_30/2011_09_30_drive_0028_sync 3827 r
1033
+ 2011_09_30/2011_09_30_drive_0033_sync 857 l
1034
+ 2011_09_30/2011_09_30_drive_0028_sync 3151 r
1035
+ 2011_10_03/2011_10_03_drive_0034_sync 264 l
1036
+ 2011_10_03/2011_10_03_drive_0034_sync 2766 r
1037
+ 2011_09_30/2011_09_30_drive_0020_sync 696 r
1038
+ 2011_09_30/2011_09_30_drive_0028_sync 2363 l
1039
+ 2011_09_30/2011_09_30_drive_0028_sync 3574 l
1040
+ 2011_09_30/2011_09_30_drive_0020_sync 766 l
1041
+ 2011_09_26/2011_09_26_drive_0061_sync 130 r
1042
+ 2011_10_03/2011_10_03_drive_0034_sync 3735 r
1043
+ 2011_09_26/2011_09_26_drive_0001_sync 0 l
1044
+ 2011_09_26/2011_09_26_drive_0011_sync 216 l
1045
+ 2011_10_03/2011_10_03_drive_0034_sync 4014 r
1046
+ 2011_09_26/2011_09_26_drive_0051_sync 175 l
1047
+ 2011_09_26/2011_09_26_drive_0051_sync 39 l
1048
+ 2011_10_03/2011_10_03_drive_0034_sync 4227 l
1049
+ 2011_09_26/2011_09_26_drive_0032_sync 338 r
1050
+ 2011_09_26/2011_09_26_drive_0051_sync 251 r
1051
+ 2011_09_26/2011_09_26_drive_0057_sync 55 r
1052
+ 2011_09_29/2011_09_29_drive_0004_sync 325 l
1053
+ 2011_09_29/2011_09_29_drive_0004_sync 68 l
1054
+ 2011_10_03/2011_10_03_drive_0034_sync 1653 r
1055
+ 2011_09_30/2011_09_30_drive_0028_sync 5141 l
1056
+ 2011_10_03/2011_10_03_drive_0034_sync 3012 r
1057
+ 2011_09_26/2011_09_26_drive_0061_sync 8 l
1058
+ 2011_10_03/2011_10_03_drive_0034_sync 3367 l
1059
+ 2011_10_03/2011_10_03_drive_0042_sync 162 r
1060
+ 2011_09_30/2011_09_30_drive_0028_sync 1628 r
1061
+ 2011_09_26/2011_09_26_drive_0022_sync 232 r
1062
+ 2011_09_26/2011_09_26_drive_0028_sync 4 l
1063
+ 2011_09_26/2011_09_26_drive_0051_sync 34 l
1064
+ 2011_09_30/2011_09_30_drive_0028_sync 258 l
1065
+ 2011_09_28/2011_09_28_drive_0001_sync 95 r
1066
+ 2011_09_26/2011_09_26_drive_0087_sync 305 r
1067
+ 2011_09_30/2011_09_30_drive_0028_sync 4810 r
1068
+ 2011_09_30/2011_09_30_drive_0034_sync 924 l
1069
+ 2011_10_03/2011_10_03_drive_0034_sync 2373 r
1070
+ 2011_10_03/2011_10_03_drive_0034_sync 613 l
1071
+ 2011_09_26/2011_09_26_drive_0061_sync 246 r
1072
+ 2011_09_30/2011_09_30_drive_0028_sync 4504 r
1073
+ 2011_10_03/2011_10_03_drive_0042_sync 458 r
1074
+ 2011_10_03/2011_10_03_drive_0042_sync 102 l
1075
+ 2011_09_30/2011_09_30_drive_0028_sync 1739 l
1076
+ 2011_09_30/2011_09_30_drive_0028_sync 357 r
1077
+ 2011_09_26/2011_09_26_drive_0051_sync 399 r
1078
+ 2011_10_03/2011_10_03_drive_0034_sync 4529 l
1079
+ 2011_09_28/2011_09_28_drive_0001_sync 79 l
1080
+ 2011_10_03/2011_10_03_drive_0034_sync 924 r
1081
+ 2011_09_30/2011_09_30_drive_0028_sync 4115 r
1082
+ 2011_09_26/2011_09_26_drive_0087_sync 313 l
1083
+ 2011_09_26/2011_09_26_drive_0087_sync 386 r
1084
+ 2011_09_30/2011_09_30_drive_0028_sync 2361 r
1085
+ 2011_09_30/2011_09_30_drive_0028_sync 2024 r
1086
+ 2011_09_30/2011_09_30_drive_0028_sync 3766 r
1087
+ 2011_09_26/2011_09_26_drive_0061_sync 637 r
1088
+ 2011_09_30/2011_09_30_drive_0034_sync 1024 r
1089
+ 2011_10_03/2011_10_03_drive_0042_sync 608 l
1090
+ 2011_09_30/2011_09_30_drive_0020_sync 235 r
1091
+ 2011_09_29/2011_09_29_drive_0004_sync 189 r
1092
+ 2011_09_30/2011_09_30_drive_0028_sync 942 r
1093
+ 2011_09_30/2011_09_30_drive_0034_sync 790 r
1094
+ 2011_10_03/2011_10_03_drive_0034_sync 3079 l
1095
+ 2011_09_30/2011_09_30_drive_0020_sync 839 r
1096
+ 2011_09_30/2011_09_30_drive_0033_sync 342 l
1097
+ 2011_09_30/2011_09_30_drive_0028_sync 3330 l
1098
+ 2011_09_30/2011_09_30_drive_0034_sync 495 r
1099
+ 2011_09_26/2011_09_26_drive_0104_sync 171 r
1100
+ 2011_10_03/2011_10_03_drive_0034_sync 302 l
1101
+ 2011_09_26/2011_09_26_drive_0039_sync 227 l
1102
+ 2011_09_26/2011_09_26_drive_0061_sync 600 l
1103
+ 2011_09_26/2011_09_26_drive_0051_sync 413 r
1104
+ 2011_09_26/2011_09_26_drive_0019_sync 86 l
1105
+ 2011_09_26/2011_09_26_drive_0028_sync 323 l
1106
+ 2011_09_30/2011_09_30_drive_0028_sync 182 l
1107
+ 2011_09_30/2011_09_30_drive_0020_sync 222 r
1108
+ 2011_09_30/2011_09_30_drive_0028_sync 1234 r
1109
+ 2011_10_03/2011_10_03_drive_0034_sync 3731 l
1110
+ 2011_10_03/2011_10_03_drive_0034_sync 1653 l
1111
+ 2011_09_26/2011_09_26_drive_0005_sync 83 r
1112
+ 2011_10_03/2011_10_03_drive_0034_sync 729 l
1113
+ 2011_09_26/2011_09_26_drive_0095_sync 48 r
1114
+ 2011_09_26/2011_09_26_drive_0087_sync 187 r
1115
+ 2011_09_30/2011_09_30_drive_0028_sync 1450 l
1116
+ 2011_10_03/2011_10_03_drive_0042_sync 549 r
1117
+ 2011_09_30/2011_09_30_drive_0028_sync 3811 l
1118
+ 2011_09_26/2011_09_26_drive_0087_sync 636 l
1119
+ 2011_09_26/2011_09_26_drive_0057_sync 292 l
1120
+ 2011_10_03/2011_10_03_drive_0042_sync 826 r
1121
+ 2011_10_03/2011_10_03_drive_0034_sync 228 l
1122
+ 2011_10_03/2011_10_03_drive_0042_sync 787 r
1123
+ 2011_09_26/2011_09_26_drive_0028_sync 44 r
1124
+ 2011_10_03/2011_10_03_drive_0034_sync 3978 r
1125
+ 2011_09_26/2011_09_26_drive_0057_sync 101 l
1126
+ 2011_09_30/2011_09_30_drive_0028_sync 3827 l
1127
+ 2011_10_03/2011_10_03_drive_0034_sync 2421 r
1128
+ 2011_09_30/2011_09_30_drive_0033_sync 520 r
1129
+ 2011_09_30/2011_09_30_drive_0034_sync 56 r
1130
+ 2011_09_26/2011_09_26_drive_0039_sync 386 l
1131
+ 2011_09_26/2011_09_26_drive_0032_sync 148 l
1132
+ 2011_09_26/2011_09_26_drive_0032_sync 166 l
1133
+ 2011_09_26/2011_09_26_drive_0028_sync 370 l
1134
+ 2011_10_03/2011_10_03_drive_0042_sync 53 r
1135
+ 2011_09_26/2011_09_26_drive_0060_sync 45 r
1136
+ 2011_09_26/2011_09_26_drive_0091_sync 322 r
1137
+ 2011_10_03/2011_10_03_drive_0034_sync 463 l
1138
+ 2011_10_03/2011_10_03_drive_0034_sync 578 r
1139
+ 2011_09_30/2011_09_30_drive_0020_sync 305 l
1140
+ 2011_09_30/2011_09_30_drive_0020_sync 224 l
1141
+ 2011_09_30/2011_09_30_drive_0034_sync 236 l
1142
+ 2011_09_26/2011_09_26_drive_0087_sync 101 l
1143
+ 2011_10_03/2011_10_03_drive_0034_sync 2337 r
1144
+ 2011_09_26/2011_09_26_drive_0022_sync 568 r
1145
+ 2011_09_26/2011_09_26_drive_0091_sync 272 l
1146
+ 2011_10_03/2011_10_03_drive_0042_sync 1150 r
1147
+ 2011_09_26/2011_09_26_drive_0070_sync 23 l
1148
+ 2011_09_26/2011_09_26_drive_0018_sync 15 l
1149
+ 2011_10_03/2011_10_03_drive_0042_sync 1031 l
1150
+ 2011_10_03/2011_10_03_drive_0034_sync 2704 r
1151
+ 2011_09_30/2011_09_30_drive_0028_sync 2767 l
1152
+ 2011_09_30/2011_09_30_drive_0020_sync 392 r
1153
+ 2011_10_03/2011_10_03_drive_0034_sync 650 l
1154
+ 2011_09_30/2011_09_30_drive_0034_sync 996 l
1155
+ 2011_10_03/2011_10_03_drive_0034_sync 3277 l
1156
+ 2011_09_30/2011_09_30_drive_0028_sync 1376 r
1157
+ 2011_09_30/2011_09_30_drive_0028_sync 909 l
1158
+ 2011_09_30/2011_09_30_drive_0028_sync 4300 r
1159
+ 2011_09_30/2011_09_30_drive_0033_sync 309 l
1160
+ 2011_09_30/2011_09_30_drive_0028_sync 2109 r
1161
+ 2011_10_03/2011_10_03_drive_0034_sync 1994 l
1162
+ 2011_09_30/2011_09_30_drive_0034_sync 354 r
1163
+ 2011_09_26/2011_09_26_drive_0035_sync 91 r
1164
+ 2011_09_26/2011_09_26_drive_0095_sync 244 l
1165
+ 2011_10_03/2011_10_03_drive_0042_sync 335 l
1166
+ 2011_10_03/2011_10_03_drive_0042_sync 162 l
1167
+ 2011_09_30/2011_09_30_drive_0034_sync 319 l
1168
+ 2011_09_26/2011_09_26_drive_0087_sync 714 r
1169
+ 2011_10_03/2011_10_03_drive_0034_sync 2253 r
1170
+ 2011_09_30/2011_09_30_drive_0028_sync 1150 l
1171
+ 2011_09_30/2011_09_30_drive_0028_sync 2725 l
1172
+ 2011_09_26/2011_09_26_drive_0032_sync 55 r
1173
+ 2011_09_26/2011_09_26_drive_0039_sync 378 l
1174
+ 2011_09_30/2011_09_30_drive_0033_sync 613 l
1175
+ 2011_09_30/2011_09_30_drive_0028_sync 1016 r
1176
+ 2011_09_30/2011_09_30_drive_0020_sync 1035 l
1177
+ 2011_10_03/2011_10_03_drive_0034_sync 228 r
1178
+ 2011_10_03/2011_10_03_drive_0034_sync 3628 l
1179
+ 2011_09_30/2011_09_30_drive_0028_sync 3447 r
1180
+ 2011_09_26/2011_09_26_drive_0104_sync 232 r
1181
+ 2011_09_30/2011_09_30_drive_0028_sync 2749 r
1182
+ 2011_09_26/2011_09_26_drive_0087_sync 410 r
1183
+ 2011_10_03/2011_10_03_drive_0034_sync 2467 l
1184
+ 2011_09_30/2011_09_30_drive_0028_sync 3863 r
1185
+ 2011_09_30/2011_09_30_drive_0033_sync 1108 l
1186
+ 2011_09_26/2011_09_26_drive_0019_sync 218 l
1187
+ 2011_09_26/2011_09_26_drive_0091_sync 242 r
1188
+ 2011_09_30/2011_09_30_drive_0034_sync 703 r
1189
+ 2011_09_26/2011_09_26_drive_0015_sync 4 r
1190
+ 2011_10_03/2011_10_03_drive_0042_sync 102 r
1191
+ 2011_09_30/2011_09_30_drive_0028_sync 1137 r
1192
+ 2011_09_26/2011_09_26_drive_0087_sync 617 r
1193
+ 2011_09_30/2011_09_30_drive_0033_sync 1363 r
1194
+ 2011_10_03/2011_10_03_drive_0034_sync 2105 r
1195
+ 2011_09_26/2011_09_26_drive_0087_sync 161 r
1196
+ 2011_10_03/2011_10_03_drive_0042_sync 163 r
1197
+ 2011_10_03/2011_10_03_drive_0034_sync 1822 r
1198
+ 2011_09_30/2011_09_30_drive_0034_sync 132 r
1199
+ 2011_10_03/2011_10_03_drive_0034_sync 302 r
1200
+ 2011_09_30/2011_09_30_drive_0033_sync 1518 l
1201
+ 2011_09_30/2011_09_30_drive_0034_sync 467 l
1202
+ 2011_10_03/2011_10_03_drive_0034_sync 605 l
1203
+ 2011_09_26/2011_09_26_drive_0095_sync 177 l
1204
+ 2011_09_29/2011_09_29_drive_0026_sync 58 l
1205
+ 2011_09_30/2011_09_30_drive_0033_sync 1108 r
1206
+ 2011_10_03/2011_10_03_drive_0034_sync 244 r
1207
+ 2011_09_30/2011_09_30_drive_0028_sync 1696 l
1208
+ 2011_09_29/2011_09_29_drive_0004_sync 57 r
1209
+ 2011_09_30/2011_09_30_drive_0020_sync 994 r
1210
+ 2011_09_26/2011_09_26_drive_0014_sync 19 r
1211
+ 2011_09_30/2011_09_30_drive_0034_sync 282 r
1212
+ 2011_09_26/2011_09_26_drive_0035_sync 84 l
1213
+ 2011_09_26/2011_09_26_drive_0032_sync 134 r
1214
+ 2011_09_26/2011_09_26_drive_0022_sync 561 r
1215
+ 2011_09_30/2011_09_30_drive_0034_sync 110 r
1216
+ 2011_09_26/2011_09_26_drive_0087_sync 255 r
1217
+ 2011_09_30/2011_09_30_drive_0028_sync 1895 r
1218
+ 2011_09_30/2011_09_30_drive_0028_sync 461 r
1219
+ 2011_09_30/2011_09_30_drive_0020_sync 190 l
1220
+ 2011_10_03/2011_10_03_drive_0034_sync 2895 l
1221
+ 2011_10_03/2011_10_03_drive_0034_sync 3747 r
1222
+ 2011_09_28/2011_09_28_drive_0001_sync 4 l
1223
+ 2011_09_30/2011_09_30_drive_0034_sync 316 l
1224
+ 2011_09_26/2011_09_26_drive_0051_sync 231 l
1225
+ 2011_09_30/2011_09_30_drive_0020_sync 560 r
1226
+ 2011_09_30/2011_09_30_drive_0028_sync 5143 r
1227
+ 2011_09_26/2011_09_26_drive_0091_sync 145 r
1228
+ 2011_09_26/2011_09_26_drive_0061_sync 687 l
1229
+ 2011_09_26/2011_09_26_drive_0014_sync 256 l
1230
+ 2011_09_30/2011_09_30_drive_0020_sync 870 r
1231
+ 2011_09_26/2011_09_26_drive_0087_sync 486 r
1232
+ 2011_09_26/2011_09_26_drive_0022_sync 227 r
1233
+ 2011_09_26/2011_09_26_drive_0051_sync 204 r
1234
+ 2011_09_30/2011_09_30_drive_0033_sync 381 r
1235
+ 2011_09_30/2011_09_30_drive_0028_sync 3039 r
1236
+ 2011_09_26/2011_09_26_drive_0061_sync 684 r
1237
+ 2011_10_03/2011_10_03_drive_0042_sync 672 r
1238
+ 2011_09_30/2011_09_30_drive_0034_sync 941 l
1239
+ 2011_10_03/2011_10_03_drive_0034_sync 880 l
1240
+ 2011_09_26/2011_09_26_drive_0032_sync 385 l
1241
+ 2011_09_26/2011_09_26_drive_0005_sync 83 l
1242
+ 2011_09_30/2011_09_30_drive_0028_sync 436 r
1243
+ 2011_10_03/2011_10_03_drive_0034_sync 2176 l
1244
+ 2011_09_26/2011_09_26_drive_0061_sync 172 r
1245
+ 2011_09_26/2011_09_26_drive_0019_sync 45 r
1246
+ 2011_09_26/2011_09_26_drive_0001_sync 7 r
1247
+ 2011_09_30/2011_09_30_drive_0033_sync 308 r
1248
+ 2011_09_30/2011_09_30_drive_0028_sync 1801 l
1249
+ 2011_09_26/2011_09_26_drive_0001_sync 7 l
1250
+ 2011_10_03/2011_10_03_drive_0034_sync 3819 l
1251
+ 2011_09_26/2011_09_26_drive_0095_sync 64 r
1252
+ 2011_09_26/2011_09_26_drive_0051_sync 37 l
1253
+ 2011_09_30/2011_09_30_drive_0028_sync 701 r
1254
+ 2011_09_30/2011_09_30_drive_0028_sync 868 l
1255
+ 2011_09_26/2011_09_26_drive_0028_sync 337 l
1256
+ 2011_09_30/2011_09_30_drive_0028_sync 755 r
1257
+ 2011_09_26/2011_09_26_drive_0018_sync 94 l
1258
+ 2011_09_26/2011_09_26_drive_0060_sync 53 r
1259
+ 2011_09_30/2011_09_30_drive_0020_sync 1035 r
1260
+ 2011_10_03/2011_10_03_drive_0034_sync 2477 r
1261
+ 2011_10_03/2011_10_03_drive_0042_sync 973 r
1262
+ 2011_09_26/2011_09_26_drive_0022_sync 726 l
1263
+ 2011_09_26/2011_09_26_drive_0035_sync 58 r
1264
+ 2011_09_26/2011_09_26_drive_0087_sync 549 l
1265
+ 2011_09_26/2011_09_26_drive_0039_sync 149 r
1266
+ 2011_09_30/2011_09_30_drive_0028_sync 1820 r
1267
+ 2011_09_30/2011_09_30_drive_0033_sync 694 r
1268
+ 2011_10_03/2011_10_03_drive_0034_sync 3944 l
1269
+ 2011_09_30/2011_09_30_drive_0033_sync 855 r
1270
+ 2011_09_26/2011_09_26_drive_0051_sync 229 r
1271
+ 2011_09_30/2011_09_30_drive_0028_sync 934 r
1272
+ 2011_09_26/2011_09_26_drive_0015_sync 125 l
1273
+ 2011_09_26/2011_09_26_drive_0032_sync 43 l
1274
+ 2011_09_30/2011_09_30_drive_0028_sync 1307 r
1275
+ 2011_10_03/2011_10_03_drive_0042_sync 927 l
1276
+ 2011_10_03/2011_10_03_drive_0034_sync 2401 r
1277
+ 2011_09_30/2011_09_30_drive_0028_sync 2862 l
1278
+ 2011_09_26/2011_09_26_drive_0095_sync 9 l
1279
+ 2011_10_03/2011_10_03_drive_0034_sync 2113 l
1280
+ 2011_09_30/2011_09_30_drive_0033_sync 308 l
1281
+ 2011_09_26/2011_09_26_drive_0035_sync 91 l
1282
+ 2011_09_30/2011_09_30_drive_0028_sync 1150 r
1283
+ 2011_09_29/2011_09_29_drive_0004_sync 295 l
1284
+ 2011_10_03/2011_10_03_drive_0034_sync 371 r
1285
+ 2011_10_03/2011_10_03_drive_0034_sync 3274 l
1286
+ 2011_09_30/2011_09_30_drive_0033_sync 381 l
1287
+ 2011_10_03/2011_10_03_drive_0034_sync 762 r
1288
+ 2011_09_30/2011_09_30_drive_0033_sync 1124 r
1289
+ 2011_09_26/2011_09_26_drive_0113_sync 40 l
1290
+ 2011_09_26/2011_09_26_drive_0032_sync 293 l
1291
+ 2011_09_26/2011_09_26_drive_0032_sync 78 r
1292
+ 2011_09_30/2011_09_30_drive_0034_sync 340 l
1293
+ 2011_10_03/2011_10_03_drive_0042_sync 244 l
1294
+ 2011_10_03/2011_10_03_drive_0042_sync 327 l
1295
+ 2011_09_30/2011_09_30_drive_0028_sync 4199 r
1296
+ 2011_09_26/2011_09_26_drive_0060_sync 18 l
1297
+ 2011_09_26/2011_09_26_drive_0087_sync 174 l
1298
+ 2011_09_26/2011_09_26_drive_0095_sync 9 r
1299
+ 2011_09_30/2011_09_30_drive_0028_sync 3426 r
1300
+ 2011_09_26/2011_09_26_drive_0014_sync 5 r
1301
+ 2011_09_30/2011_09_30_drive_0028_sync 2592 l
1302
+ 2011_09_26/2011_09_26_drive_0005_sync 142 l
1303
+ 2011_09_26/2011_09_26_drive_0061_sync 549 l
1304
+ 2011_09_30/2011_09_30_drive_0028_sync 1593 r
1305
+ 2011_10_03/2011_10_03_drive_0034_sync 30 l
1306
+ 2011_09_26/2011_09_26_drive_0061_sync 578 l
1307
+ 2011_09_26/2011_09_26_drive_0061_sync 172 l
1308
+ 2011_09_30/2011_09_30_drive_0033_sync 855 l
1309
+ 2011_09_30/2011_09_30_drive_0034_sync 336 r
1310
+ 2011_09_30/2011_09_30_drive_0028_sync 3635 r
1311
+ 2011_10_03/2011_10_03_drive_0034_sync 2704 l
1312
+ 2011_09_26/2011_09_26_drive_0018_sync 37 l
1313
+ 2011_10_03/2011_10_03_drive_0034_sync 3005 r
1314
+ 2011_09_30/2011_09_30_drive_0028_sync 84 l
1315
+ 2011_09_26/2011_09_26_drive_0087_sync 661 r
1316
+ 2011_09_30/2011_09_30_drive_0028_sync 3669 r
1317
+ 2011_10_03/2011_10_03_drive_0034_sync 30 r
1318
+ 2011_09_26/2011_09_26_drive_0014_sync 96 r
1319
+ 2011_09_30/2011_09_30_drive_0033_sync 1573 l
1320
+ 2011_09_30/2011_09_30_drive_0028_sync 942 l
1321
+ 2011_10_03/2011_10_03_drive_0034_sync 2004 l
1322
+ 2011_09_26/2011_09_26_drive_0051_sync 204 l
1323
+ 2011_09_26/2011_09_26_drive_0051_sync 321 r
1324
+ 2011_09_30/2011_09_30_drive_0034_sync 659 r
1325
+ 2011_10_03/2011_10_03_drive_0034_sync 317 l
1326
+ 2011_09_30/2011_09_30_drive_0028_sync 4927 r
1327
+ 2011_09_26/2011_09_26_drive_0001_sync 86 l
1328
+ 2011_10_03/2011_10_03_drive_0042_sync 3 r
1329
+ 2011_10_03/2011_10_03_drive_0034_sync 4149 r
1330
+ 2011_09_30/2011_09_30_drive_0034_sync 495 l
1331
+ 2011_10_03/2011_10_03_drive_0034_sync 1511 l
1332
+ 2011_09_26/2011_09_26_drive_0039_sync 378 r
1333
+ 2011_09_30/2011_09_30_drive_0028_sync 3760 l
1334
+ 2011_10_03/2011_10_03_drive_0034_sync 2533 l
1335
+ 2011_09_30/2011_09_30_drive_0028_sync 1115 r
1336
+ 2011_09_26/2011_09_26_drive_0061_sync 420 l
1337
+ 2011_10_03/2011_10_03_drive_0034_sync 3465 r
1338
+ 2011_09_29/2011_09_29_drive_0004_sync 44 r
1339
+ 2011_09_26/2011_09_26_drive_0057_sync 260 r
1340
+ 2011_09_26/2011_09_26_drive_0060_sync 19 l
1341
+ 2011_10_03/2011_10_03_drive_0034_sync 2630 l
1342
+ 2011_09_30/2011_09_30_drive_0020_sync 941 l
1343
+ 2011_10_03/2011_10_03_drive_0042_sync 300 r
1344
+ 2011_09_30/2011_09_30_drive_0028_sync 1234 l
1345
+ 2011_09_30/2011_09_30_drive_0034_sync 780 l
1346
+ 2011_09_30/2011_09_30_drive_0033_sync 1116 l
1347
+ 2011_09_26/2011_09_26_drive_0022_sync 98 l
1348
+ 2011_09_26/2011_09_26_drive_0091_sync 311 l
1349
+ 2011_09_30/2011_09_30_drive_0028_sync 2767 r
1350
+ 2011_10_03/2011_10_03_drive_0034_sync 3084 l
1351
+ 2011_09_30/2011_09_30_drive_0033_sync 1433 l
1352
+ 2011_10_03/2011_10_03_drive_0034_sync 2565 r
1353
+ 2011_09_30/2011_09_30_drive_0028_sync 2611 r
1354
+ 2011_09_29/2011_09_29_drive_0004_sync 90 r
1355
+ 2011_09_26/2011_09_26_drive_0091_sync 90 l
1356
+ 2011_10_03/2011_10_03_drive_0034_sync 244 l
1357
+ 2011_09_30/2011_09_30_drive_0028_sync 1016 l
1358
+ 2011_10_03/2011_10_03_drive_0042_sync 204 l
1359
+ 2011_09_30/2011_09_30_drive_0028_sync 1561 l
1360
+ 2011_09_30/2011_09_30_drive_0028_sync 2830 l
1361
+ 2011_10_03/2011_10_03_drive_0034_sync 2723 r
1362
+ 2011_09_26/2011_09_26_drive_0087_sync 37 r
1363
+ 2011_09_29/2011_09_29_drive_0004_sync 41 l
1364
+ 2011_10_03/2011_10_03_drive_0034_sync 980 r
1365
+ 2011_09_30/2011_09_30_drive_0020_sync 21 r
1366
+ 2011_09_30/2011_09_30_drive_0028_sync 2561 r
1367
+ 2011_09_26/2011_09_26_drive_0014_sync 274 l
1368
+ 2011_09_30/2011_09_30_drive_0028_sync 308 l
1369
+ 2011_09_30/2011_09_30_drive_0028_sync 1307 l
1370
+ 2011_10_03/2011_10_03_drive_0034_sync 1484 l
1371
+ 2011_10_03/2011_10_03_drive_0034_sync 4196 l
1372
+ 2011_10_03/2011_10_03_drive_0034_sync 1517 r
1373
+ 2011_09_30/2011_09_30_drive_0033_sync 934 l
1374
+ 2011_10_03/2011_10_03_drive_0034_sync 4288 r
1375
+ 2011_09_26/2011_09_26_drive_0061_sync 549 r
1376
+ 2011_09_30/2011_09_30_drive_0033_sync 37 l
1377
+ 2011_09_26/2011_09_26_drive_0070_sync 350 r
1378
+ 2011_09_30/2011_09_30_drive_0028_sync 1397 r
1379
+ 2011_09_30/2011_09_30_drive_0033_sync 583 l
1380
+ 2011_09_30/2011_09_30_drive_0034_sync 420 r
1381
+ 2011_10_03/2011_10_03_drive_0034_sync 3926 r
1382
+ 2011_09_30/2011_09_30_drive_0028_sync 3635 l
1383
+ 2011_09_26/2011_09_26_drive_0087_sync 725 r
1384
+ 2011_09_30/2011_09_30_drive_0034_sync 82 r
1385
+ 2011_09_26/2011_09_26_drive_0022_sync 168 r
1386
+ 2011_09_30/2011_09_30_drive_0028_sync 84 r
1387
+ 2011_09_26/2011_09_26_drive_0095_sync 84 l
1388
+ 2011_09_30/2011_09_30_drive_0020_sync 231 r
1389
+ 2011_09_26/2011_09_26_drive_0035_sync 104 l
1390
+ 2011_10_03/2011_10_03_drive_0042_sync 826 l
1391
+ 2011_09_30/2011_09_30_drive_0033_sync 857 r
1392
+ 2011_09_26/2011_09_26_drive_0001_sync 75 l
1393
+ 2011_10_03/2011_10_03_drive_0034_sync 4279 l
1394
+ 2011_10_03/2011_10_03_drive_0042_sync 201 l
1395
+ 2011_09_30/2011_09_30_drive_0020_sync 766 r
1396
+ 2011_09_26/2011_09_26_drive_0087_sync 182 r
1397
+ 2011_09_26/2011_09_26_drive_0061_sync 241 r
1398
+ 2011_09_30/2011_09_30_drive_0028_sync 2494 l
1399
+ 2011_09_30/2011_09_30_drive_0028_sync 2786 r
1400
+ 2011_10_03/2011_10_03_drive_0034_sync 929 r
1401
+ 2011_10_03/2011_10_03_drive_0042_sync 174 r
1402
+ 2011_10_03/2011_10_03_drive_0034_sync 386 l
1403
+ 2011_10_03/2011_10_03_drive_0034_sync 289 l
1404
+ 2011_10_03/2011_10_03_drive_0042_sync 1053 l
1405
+ 2011_09_30/2011_09_30_drive_0028_sync 463 r
1406
+ 2011_09_26/2011_09_26_drive_0061_sync 114 l
1407
+ 2011_10_03/2011_10_03_drive_0034_sync 85 r
1408
+ 2011_10_03/2011_10_03_drive_0034_sync 1730 r
1409
+ 2011_09_26/2011_09_26_drive_0032_sync 166 r
1410
+ 2011_10_03/2011_10_03_drive_0034_sync 1998 r
1411
+ 2011_09_30/2011_09_30_drive_0034_sync 416 l
1412
+ 2011_09_26/2011_09_26_drive_0039_sync 125 l
1413
+ 2011_09_30/2011_09_30_drive_0020_sync 21 l
1414
+ 2011_09_30/2011_09_30_drive_0033_sync 1557 r
1415
+ 2011_09_26/2011_09_26_drive_0032_sync 78 l
1416
+ 2011_10_03/2011_10_03_drive_0042_sync 549 l
1417
+ 2011_09_30/2011_09_30_drive_0028_sync 4491 r
1418
+ 2011_09_26/2011_09_26_drive_0039_sync 172 r
1419
+ 2011_10_03/2011_10_03_drive_0034_sync 85 l
1420
+ 2011_09_26/2011_09_26_drive_0028_sync 423 r
1421
+ 2011_09_30/2011_09_30_drive_0028_sync 4825 l
1422
+ 2011_09_30/2011_09_30_drive_0028_sync 2759 r
1423
+ 2011_10_03/2011_10_03_drive_0042_sync 327 r
1424
+ 2011_10_03/2011_10_03_drive_0042_sync 3 l
1425
+ 2011_09_30/2011_09_30_drive_0034_sync 659 l
1426
+ 2011_09_26/2011_09_26_drive_0091_sync 235 r
1427
+ 2011_10_03/2011_10_03_drive_0034_sync 613 r
1428
+ 2011_09_26/2011_09_26_drive_0061_sync 521 r
1429
+ 2011_09_30/2011_09_30_drive_0033_sync 349 r
1430
+ 2011_09_30/2011_09_30_drive_0028_sync 2303 l
1431
+ 2011_09_30/2011_09_30_drive_0028_sync 2524 r
1432
+ 2011_10_03/2011_10_03_drive_0034_sync 3718 l
1433
+ 2011_09_30/2011_09_30_drive_0028_sync 3012 l
1434
+ 2011_10_03/2011_10_03_drive_0034_sync 2176 r
1435
+ 2011_10_03/2011_10_03_drive_0034_sync 2421 l
1436
+ 2011_09_26/2011_09_26_drive_0017_sync 24 l
1437
+ 2011_09_26/2011_09_26_drive_0005_sync 92 l
1438
+ 2011_09_30/2011_09_30_drive_0028_sync 1438 l
1439
+ 2011_09_26/2011_09_26_drive_0018_sync 165 r
1440
+ 2011_09_30/2011_09_30_drive_0028_sync 1168 l
1441
+ 2011_09_26/2011_09_26_drive_0018_sync 34 r
1442
+ 2011_10_03/2011_10_03_drive_0034_sync 650 r
1443
+ 2011_09_26/2011_09_26_drive_0061_sync 4 l
1444
+ 2011_09_30/2011_09_30_drive_0028_sync 4117 r
1445
+ 2011_09_26/2011_09_26_drive_0087_sync 305 l
1446
+ 2011_10_03/2011_10_03_drive_0042_sync 1141 l
1447
+ 2011_09_30/2011_09_30_drive_0020_sync 955 r
1448
+ 2011_09_30/2011_09_30_drive_0028_sync 3650 r
1449
+ 2011_09_26/2011_09_26_drive_0057_sync 170 l
1450
+ 2011_09_30/2011_09_30_drive_0033_sync 1493 r
1451
+ 2011_09_26/2011_09_26_drive_0087_sync 74 r
1452
+ 2011_09_26/2011_09_26_drive_0014_sync 218 l
1453
+ 2011_09_29/2011_09_29_drive_0004_sync 325 r
1454
+ 2011_09_30/2011_09_30_drive_0028_sync 1895 l
1455
+ 2011_10_03/2011_10_03_drive_0042_sync 933 l
1456
+ 2011_09_26/2011_09_26_drive_0039_sync 125 r
1457
+ 2011_10_03/2011_10_03_drive_0042_sync 979 l
1458
+ 2011_10_03/2011_10_03_drive_0042_sync 879 l
1459
+ 2011_09_26/2011_09_26_drive_0035_sync 104 r
1460
+ 2011_09_30/2011_09_30_drive_0028_sync 2904 r
1461
+ 2011_09_29/2011_09_29_drive_0004_sync 295 r
1462
+ 2011_09_26/2011_09_26_drive_0018_sync 234 r
1463
+ 2011_10_03/2011_10_03_drive_0034_sync 2328 r
1464
+ 2011_09_30/2011_09_30_drive_0033_sync 694 l
1465
+ 2011_10_03/2011_10_03_drive_0034_sync 395 r
1466
+ 2011_09_30/2011_09_30_drive_0034_sync 11 l
1467
+ 2011_09_26/2011_09_26_drive_0087_sync 377 l
1468
+ 2011_09_26/2011_09_26_drive_0039_sync 56 r
1469
+ 2011_10_03/2011_10_03_drive_0034_sync 3084 r
1470
+ 2011_09_26/2011_09_26_drive_0018_sync 84 l
1471
+ 2011_09_26/2011_09_26_drive_0091_sync 226 r
1472
+ 2011_09_30/2011_09_30_drive_0034_sync 299 l
1473
+ 2011_09_26/2011_09_26_drive_0028_sync 337 r
1474
+ 2011_09_30/2011_09_30_drive_0034_sync 333 r
1475
+ 2011_09_30/2011_09_30_drive_0034_sync 494 l
1476
+ 2011_10_03/2011_10_03_drive_0034_sync 371 l
1477
+ 2011_09_26/2011_09_26_drive_0087_sync 714 l
1478
+ 2011_09_30/2011_09_30_drive_0033_sync 267 r
1479
+ 2011_09_26/2011_09_26_drive_0019_sync 218 r
1480
+ 2011_09_30/2011_09_30_drive_0028_sync 4504 l
1481
+ 2011_09_30/2011_09_30_drive_0020_sync 598 r
1482
+ 2011_10_03/2011_10_03_drive_0034_sync 2294 l
1483
+ 2011_09_30/2011_09_30_drive_0034_sync 416 r
1484
+ 2011_09_29/2011_09_29_drive_0004_sync 17 r
1485
+ 2011_09_30/2011_09_30_drive_0028_sync 2274 l
1486
+ 2011_09_26/2011_09_26_drive_0022_sync 472 l
1487
+ 2011_09_26/2011_09_26_drive_0032_sync 316 r
1488
+ 2011_09_26/2011_09_26_drive_0032_sync 128 l
1489
+ 2011_09_26/2011_09_26_drive_0087_sync 273 l
1490
+ 2011_09_30/2011_09_30_drive_0028_sync 4174 r
1491
+ 2011_09_30/2011_09_30_drive_0028_sync 980 l
1492
+ 2011_09_30/2011_09_30_drive_0028_sync 2561 l
1493
+ 2011_10_03/2011_10_03_drive_0042_sync 608 r
1494
+ 2011_09_26/2011_09_26_drive_0028_sync 4 r
1495
+ 2011_09_26/2011_09_26_drive_0087_sync 410 l
1496
+ 2011_10_03/2011_10_03_drive_0034_sync 1212 r
1497
+ 2011_10_03/2011_10_03_drive_0034_sync 2410 r
1498
+ 2011_10_03/2011_10_03_drive_0042_sync 696 r
1499
+ 2011_10_03/2011_10_03_drive_0034_sync 3012 l
1500
+ 2011_10_03/2011_10_03_drive_0042_sync 1085 r
1501
+ 2011_10_03/2011_10_03_drive_0042_sync 666 l
1502
+ 2011_09_26/2011_09_26_drive_0011_sync 171 r
1503
+ 2011_09_26/2011_09_26_drive_0070_sync 23 r
1504
+ 2011_10_03/2011_10_03_drive_0042_sync 571 r
1505
+ 2011_09_26/2011_09_26_drive_0035_sync 29 l
1506
+ 2011_09_30/2011_09_30_drive_0028_sync 225 r
1507
+ 2011_09_30/2011_09_30_drive_0020_sync 339 l
1508
+ 2011_09_26/2011_09_26_drive_0113_sync 75 l
1509
+ 2011_09_29/2011_09_29_drive_0026_sync 134 r
1510
+ 2011_09_30/2011_09_30_drive_0028_sync 225 l
1511
+ 2011_10_03/2011_10_03_drive_0034_sync 2508 r
1512
+ 2011_09_30/2011_09_30_drive_0028_sync 4813 r
1513
+ 2011_09_30/2011_09_30_drive_0028_sync 4207 r
1514
+ 2011_09_30/2011_09_30_drive_0033_sync 200 l
1515
+ 2011_09_30/2011_09_30_drive_0020_sync 154 l
1516
+ 2011_09_30/2011_09_30_drive_0028_sync 1885 l
1517
+ 2011_09_26/2011_09_26_drive_0022_sync 311 r
1518
+ 2011_09_30/2011_09_30_drive_0028_sync 1174 r
1519
+ 2011_09_30/2011_09_30_drive_0028_sync 2738 r
1520
+ 2011_10_03/2011_10_03_drive_0042_sync 819 l
1521
+ 2011_10_03/2011_10_03_drive_0042_sync 163 l
1522
+ 2011_09_30/2011_09_30_drive_0028_sync 2605 l
1523
+ 2011_09_30/2011_09_30_drive_0028_sync 967 l
1524
+ 2011_09_30/2011_09_30_drive_0028_sync 425 r
1525
+ 2011_10_03/2011_10_03_drive_0042_sync 155 r
1526
+ 2011_10_03/2011_10_03_drive_0034_sync 3882 r
1527
+ 2011_09_30/2011_09_30_drive_0034_sync 675 r
1528
+ 2011_09_30/2011_09_30_drive_0028_sync 4254 l
1529
+ 2011_09_26/2011_09_26_drive_0039_sync 134 r
1530
+ 2011_09_30/2011_09_30_drive_0028_sync 85 l
1531
+ 2011_10_03/2011_10_03_drive_0042_sync 195 l
1532
+ 2011_09_26/2011_09_26_drive_0061_sync 673 r
1533
+ 2011_09_30/2011_09_30_drive_0033_sync 421 r
1534
+ 2011_09_26/2011_09_26_drive_0091_sync 145 l
1535
+ 2011_09_30/2011_09_30_drive_0028_sync 672 l
1536
+ 2011_10_03/2011_10_03_drive_0042_sync 175 r
1537
+ 2011_09_30/2011_09_30_drive_0028_sync 2295 r
1538
+ 2011_09_26/2011_09_26_drive_0028_sync 370 r
1539
+ 2011_09_29/2011_09_29_drive_0026_sync 7 r
1540
+ 2011_09_30/2011_09_30_drive_0028_sync 2805 l
1541
+ 2011_09_30/2011_09_30_drive_0028_sync 3365 l
1542
+ 2011_09_26/2011_09_26_drive_0095_sync 48 l
1543
+ 2011_09_30/2011_09_30_drive_0028_sync 182 r
1544
+ 2011_09_30/2011_09_30_drive_0033_sync 424 r
1545
+ 2011_09_26/2011_09_26_drive_0113_sync 70 r
1546
+ 2011_10_03/2011_10_03_drive_0034_sync 2353 l
1547
+ 2011_09_26/2011_09_26_drive_0018_sync 165 l
1548
+ 2011_10_03/2011_10_03_drive_0042_sync 934 l
1549
+ 2011_09_30/2011_09_30_drive_0028_sync 1348 l
1550
+ 2011_09_26/2011_09_26_drive_0087_sync 628 l
1551
+ 2011_09_30/2011_09_30_drive_0028_sync 5032 r
1552
+ 2011_09_30/2011_09_30_drive_0028_sync 3039 l
1553
+ 2011_09_26/2011_09_26_drive_0022_sync 113 r
1554
+ 2011_10_03/2011_10_03_drive_0034_sync 481 l
1555
+ 2011_09_30/2011_09_30_drive_0028_sync 4381 r
1556
+ 2011_10_03/2011_10_03_drive_0034_sync 4051 l
1557
+ 2011_09_26/2011_09_26_drive_0061_sync 7 r
1558
+ 2011_10_03/2011_10_03_drive_0034_sync 1511 r
1559
+ 2011_09_30/2011_09_30_drive_0034_sync 769 l
1560
+ 2011_09_29/2011_09_29_drive_0026_sync 134 l
1561
+ 2011_09_30/2011_09_30_drive_0028_sync 1550 r
1562
+ 2011_09_30/2011_09_30_drive_0028_sync 4810 l
1563
+ 2011_09_26/2011_09_26_drive_0018_sync 94 r
1564
+ 2011_09_30/2011_09_30_drive_0034_sync 851 r
1565
+ 2011_09_26/2011_09_26_drive_0087_sync 666 r
1566
+ 2011_10_03/2011_10_03_drive_0034_sync 2113 r
1567
+ 2011_09_30/2011_09_30_drive_0028_sync 166 l
1568
+ 2011_09_30/2011_09_30_drive_0028_sync 2524 l
1569
+ 2011_09_29/2011_09_29_drive_0004_sync 44 l
1570
+ 2011_09_30/2011_09_30_drive_0020_sync 320 r
1571
+ 2011_09_26/2011_09_26_drive_0061_sync 607 r
1572
+ 2011_09_26/2011_09_26_drive_0032_sync 128 r
1573
+ 2011_09_30/2011_09_30_drive_0028_sync 329 r
1574
+ 2011_10_03/2011_10_03_drive_0034_sync 2647 l
1575
+ 2011_09_30/2011_09_30_drive_0028_sync 5168 l
1576
+ 2011_09_30/2011_09_30_drive_0034_sync 305 l
1577
+ 2011_09_30/2011_09_30_drive_0034_sync 82 l
1578
+ 2011_09_30/2011_09_30_drive_0028_sync 1930 l
1579
+ 2011_09_26/2011_09_26_drive_0057_sync 101 r
1580
+ 2011_09_30/2011_09_30_drive_0033_sync 1097 l
1581
+ 2011_10_03/2011_10_03_drive_0042_sync 1109 l
1582
+ 2011_09_26/2011_09_26_drive_0087_sync 174 r
1583
+ 2011_09_30/2011_09_30_drive_0033_sync 1149 r
1584
+ 2011_09_30/2011_09_30_drive_0020_sync 137 l
1585
+ 2011_09_26/2011_09_26_drive_0104_sync 272 r
1586
+ 2011_10_03/2011_10_03_drive_0034_sync 2257 r
1587
+ 2011_09_26/2011_09_26_drive_0017_sync 23 l
1588
+ 2011_10_03/2011_10_03_drive_0034_sync 3543 r
1589
+ 2011_09_30/2011_09_30_drive_0033_sync 48 l
1590
+ 2011_09_30/2011_09_30_drive_0033_sync 143 r
1591
+ 2011_09_30/2011_09_30_drive_0034_sync 1202 l
1592
+ 2011_09_30/2011_09_30_drive_0020_sync 165 l
1593
+ 2011_09_26/2011_09_26_drive_0035_sync 40 r
1594
+ 2011_09_30/2011_09_30_drive_0034_sync 299 r
1595
+ 2011_09_26/2011_09_26_drive_0061_sync 127 l
1596
+ 2011_10_03/2011_10_03_drive_0034_sync 1317 l
1597
+ 2011_09_30/2011_09_30_drive_0033_sync 1124 l
1598
+ 2011_09_26/2011_09_26_drive_0070_sync 175 l
1599
+ 2011_10_03/2011_10_03_drive_0034_sync 112 r
1600
+ 2011_09_30/2011_09_30_drive_0034_sync 167 r
1601
+ 2011_09_26/2011_09_26_drive_0039_sync 19 r
1602
+ 2011_09_30/2011_09_30_drive_0028_sync 1166 r
1603
+ 2011_09_26/2011_09_26_drive_0051_sync 248 r
1604
+ 2011_09_30/2011_09_30_drive_0028_sync 166 r
1605
+ 2011_10_03/2011_10_03_drive_0034_sync 3401 r
1606
+ 2011_09_26/2011_09_26_drive_0022_sync 561 l
1607
+ 2011_09_26/2011_09_26_drive_0061_sync 38 r
1608
+ 2011_10_03/2011_10_03_drive_0042_sync 1031 r
1609
+ 2011_09_30/2011_09_30_drive_0034_sync 697 l
1610
+ 2011_10_03/2011_10_03_drive_0034_sync 2662 r
1611
+ 2011_09_30/2011_09_30_drive_0028_sync 1907 l
1612
+ 2011_09_30/2011_09_30_drive_0028_sync 1404 r
1613
+ 2011_09_30/2011_09_30_drive_0028_sync 3178 r
1614
+ 2011_09_26/2011_09_26_drive_0014_sync 5 l
1615
+ 2011_10_03/2011_10_03_drive_0042_sync 455 l
1616
+ 2011_10_03/2011_10_03_drive_0034_sync 2994 l
1617
+ 2011_09_26/2011_09_26_drive_0061_sync 241 l
1618
+ 2011_09_26/2011_09_26_drive_0032_sync 65 r
1619
+ 2011_09_29/2011_09_29_drive_0004_sync 68 r
1620
+ 2011_09_26/2011_09_26_drive_0005_sync 92 r
1621
+ 2011_09_26/2011_09_26_drive_0091_sync 272 r
1622
+ 2011_09_30/2011_09_30_drive_0028_sync 3853 r
1623
+ 2011_09_26/2011_09_26_drive_0087_sync 313 r
1624
+ 2011_10_03/2011_10_03_drive_0034_sync 2461 l
1625
+ 2011_09_30/2011_09_30_drive_0034_sync 195 r
1626
+ 2011_09_30/2011_09_30_drive_0028_sync 1199 l
1627
+ 2011_10_03/2011_10_03_drive_0042_sync 933 r
1628
+ 2011_10_03/2011_10_03_drive_0034_sync 2632 l
1629
+ 2011_10_03/2011_10_03_drive_0034_sync 3909 l
1630
+ 2011_09_26/2011_09_26_drive_0028_sync 363 l
1631
+ 2011_09_26/2011_09_26_drive_0019_sync 474 l
1632
+ 2011_09_30/2011_09_30_drive_0033_sync 1363 l
1633
+ 2011_09_30/2011_09_30_drive_0028_sync 4399 r
1634
+ 2011_09_30/2011_09_30_drive_0028_sync 3237 r
1635
+ 2011_09_30/2011_09_30_drive_0028_sync 1145 l
1636
+ 2011_09_28/2011_09_28_drive_0001_sync 31 l
1637
+ 2011_09_26/2011_09_26_drive_0087_sync 370 l
1638
+ 2011_09_26/2011_09_26_drive_0104_sync 260 r
1639
+ 2011_09_30/2011_09_30_drive_0028_sync 3447 l
1640
+ 2011_09_30/2011_09_30_drive_0028_sync 2024 l
1641
+ 2011_09_26/2011_09_26_drive_0039_sync 134 l
1642
+ 2011_09_30/2011_09_30_drive_0033_sync 803 r
1643
+ 2011_09_30/2011_09_30_drive_0034_sync 62 r
1644
+ 2011_09_30/2011_09_30_drive_0028_sync 2109 l
1645
+ 2011_09_29/2011_09_29_drive_0026_sync 58 r
1646
+ 2011_10_03/2011_10_03_drive_0034_sync 2257 l
1647
+ 2011_09_26/2011_09_26_drive_0091_sync 242 l
1648
+ 2011_09_30/2011_09_30_drive_0034_sync 675 l
1649
+ 2011_10_03/2011_10_03_drive_0034_sync 3635 l
1650
+ 2011_09_26/2011_09_26_drive_0079_sync 59 l
1651
+ 2011_09_26/2011_09_26_drive_0087_sync 386 l
1652
+ 2011_09_26/2011_09_26_drive_0095_sync 244 r
1653
+ 2011_09_26/2011_09_26_drive_0057_sync 292 r
1654
+ 2011_09_30/2011_09_30_drive_0028_sync 2725 r
1655
+ 2011_09_26/2011_09_26_drive_0022_sync 123 r
1656
+ 2011_10_03/2011_10_03_drive_0034_sync 1822 l
1657
+ 2011_10_03/2011_10_03_drive_0042_sync 666 r
1658
+ 2011_09_26/2011_09_26_drive_0019_sync 269 l
1659
+ 2011_09_26/2011_09_26_drive_0061_sync 562 r
1660
+ 2011_09_26/2011_09_26_drive_0087_sync 316 r
1661
+ 2011_10_03/2011_10_03_drive_0034_sync 3327 r
1662
+ 2011_09_30/2011_09_30_drive_0028_sync 730 r
1663
+ 2011_10_03/2011_10_03_drive_0034_sync 2174 r
1664
+ 2011_09_30/2011_09_30_drive_0028_sync 1906 r
1665
+ 2011_09_26/2011_09_26_drive_0087_sync 273 r
1666
+ 2011_09_26/2011_09_26_drive_0039_sync 291 l
1667
+ 2011_09_26/2011_09_26_drive_0061_sync 274 l
1668
+ 2011_09_30/2011_09_30_drive_0034_sync 333 l
1669
+ 2011_09_26/2011_09_26_drive_0022_sync 168 l
1670
+ 2011_10_03/2011_10_03_drive_0042_sync 715 r
1671
+ 2011_09_30/2011_09_30_drive_0028_sync 3811 r
1672
+ 2011_09_26/2011_09_26_drive_0017_sync 24 r
1673
+ 2011_09_30/2011_09_30_drive_0028_sync 3647 l
1674
+ 2011_09_26/2011_09_26_drive_0061_sync 127 r
1675
+ 2011_09_26/2011_09_26_drive_0113_sync 30 r
1676
+ 2011_09_30/2011_09_30_drive_0028_sync 3175 r
1677
+ 2011_09_30/2011_09_30_drive_0028_sync 702 r
1678
+ 2011_10_03/2011_10_03_drive_0034_sync 3003 r
1679
+ 2011_09_30/2011_09_30_drive_0028_sync 333 r
1680
+ 2011_09_30/2011_09_30_drive_0028_sync 3537 l
1681
+ 2011_10_03/2011_10_03_drive_0034_sync 680 l
1682
+ 2011_09_26/2011_09_26_drive_0061_sync 518 l
1683
+ 2011_09_26/2011_09_26_drive_0057_sync 90 r
1684
+ 2011_09_30/2011_09_30_drive_0028_sync 1174 l
1685
+ 2011_09_26/2011_09_26_drive_0022_sync 245 r
1686
+ 2011_09_26/2011_09_26_drive_0104_sync 252 r
1687
+ 2011_09_26/2011_09_26_drive_0087_sync 161 l
1688
+ 2011_10_03/2011_10_03_drive_0042_sync 777 r
1689
+ 2011_09_26/2011_09_26_drive_0001_sync 100 l
1690
+ 2011_10_03/2011_10_03_drive_0034_sync 4279 r
1691
+ 2011_10_03/2011_10_03_drive_0042_sync 273 r
1692
+ 2011_09_26/2011_09_26_drive_0095_sync 95 l
1693
+ 2011_09_26/2011_09_26_drive_0070_sync 116 r
1694
+ 2011_09_30/2011_09_30_drive_0028_sync 493 r
1695
+ 2011_09_29/2011_09_29_drive_0004_sync 41 r
1696
+ 2011_10_03/2011_10_03_drive_0034_sync 914 r
1697
+ 2011_10_03/2011_10_03_drive_0034_sync 1289 r
1698
+ 2011_10_03/2011_10_03_drive_0034_sync 317 r
1699
+ 2011_09_30/2011_09_30_drive_0028_sync 4865 r
1700
+ 2011_10_03/2011_10_03_drive_0034_sync 4478 r
1701
+ 2011_09_26/2011_09_26_drive_0070_sync 198 l
1702
+ 2011_10_03/2011_10_03_drive_0034_sync 654 l
1703
+ 2011_09_30/2011_09_30_drive_0034_sync 528 l
1704
+ 2011_09_26/2011_09_26_drive_0028_sync 342 l
1705
+ 2011_09_30/2011_09_30_drive_0033_sync 617 r
1706
+ 2011_09_30/2011_09_30_drive_0033_sync 1300 l
1707
+ 2011_10_03/2011_10_03_drive_0034_sync 929 l
1708
+ 2011_09_26/2011_09_26_drive_0014_sync 219 l
1709
+ 2011_09_30/2011_09_30_drive_0028_sync 4439 l
1710
+ 2011_09_30/2011_09_30_drive_0028_sync 909 r
1711
+ 2011_10_03/2011_10_03_drive_0034_sync 3208 l
1712
+ 2011_10_03/2011_10_03_drive_0034_sync 3384 r
1713
+ 2011_10_03/2011_10_03_drive_0034_sync 2328 l
1714
+ 2011_10_03/2011_10_03_drive_0034_sync 1499 r
1715
+ 2011_09_26/2011_09_26_drive_0028_sync 65 r
1716
+ 2011_09_26/2011_09_26_drive_0087_sync 37 l
1717
+ 2011_09_30/2011_09_30_drive_0028_sync 1906 l
1718
+ 2011_09_30/2011_09_30_drive_0020_sync 870 l
1719
+ 2011_10_03/2011_10_03_drive_0042_sync 195 r
1720
+ 2011_09_30/2011_09_30_drive_0020_sync 1016 r
1721
+ 2011_09_26/2011_09_26_drive_0070_sync 150 r
1722
+ 2011_09_30/2011_09_30_drive_0028_sync 4369 l
1723
+ 2011_09_30/2011_09_30_drive_0028_sync 3446 r
1724
+ 2011_09_30/2011_09_30_drive_0020_sync 994 l
1725
+ 2011_09_26/2011_09_26_drive_0095_sync 138 r
1726
+ 2011_09_26/2011_09_26_drive_0087_sync 101 r
1727
+ 2011_09_30/2011_09_30_drive_0034_sync 422 l
1728
+ 2011_09_30/2011_09_30_drive_0034_sync 941 r
1729
+ 2011_09_26/2011_09_26_drive_0028_sync 12 r
1730
+ 2011_09_30/2011_09_30_drive_0028_sync 2494 r
1731
+ 2011_09_30/2011_09_30_drive_0033_sync 1097 r
1732
+ 2011_09_26/2011_09_26_drive_0061_sync 544 r
1733
+ 2011_10_03/2011_10_03_drive_0042_sync 634 r
1734
+ 2011_09_30/2011_09_30_drive_0028_sync 3051 l
1735
+ 2011_10_03/2011_10_03_drive_0042_sync 974 r
1736
+ 2011_10_03/2011_10_03_drive_0034_sync 3777 l
1737
+ 2011_09_30/2011_09_30_drive_0028_sync 2451 r
1738
+ 2011_09_30/2011_09_30_drive_0034_sync 969 r
1739
+ 2011_09_30/2011_09_30_drive_0028_sync 514 r
1740
+ 2011_09_30/2011_09_30_drive_0033_sync 76 r
1741
+ 2011_10_03/2011_10_03_drive_0034_sync 3384 l
1742
+ 2011_09_26/2011_09_26_drive_0113_sync 40 r
1743
+ 2011_09_30/2011_09_30_drive_0020_sync 560 l
1744
+ 2011_09_26/2011_09_26_drive_0014_sync 41 l
1745
+ 2011_09_26/2011_09_26_drive_0104_sync 277 r
1746
+ 2011_09_26/2011_09_26_drive_0113_sync 70 l
1747
+ 2011_09_30/2011_09_30_drive_0028_sync 4804 r
1748
+ 2011_09_30/2011_09_30_drive_0034_sync 790 l
1749
+ 2011_09_26/2011_09_26_drive_0039_sync 104 l
1750
+ 2011_09_30/2011_09_30_drive_0028_sync 2076 l
1751
+ 2011_09_26/2011_09_26_drive_0011_sync 42 l
1752
+ 2011_09_26/2011_09_26_drive_0015_sync 4 l
1753
+ 2011_09_30/2011_09_30_drive_0033_sync 48 r
1754
+ 2011_10_03/2011_10_03_drive_0034_sync 481 r
1755
+ 2011_09_26/2011_09_26_drive_0039_sync 254 r
1756
+ 2011_10_03/2011_10_03_drive_0034_sync 4117 l
1757
+ 2011_09_30/2011_09_30_drive_0028_sync 2426 l
1758
+ 2011_09_30/2011_09_30_drive_0028_sync 4115 l
1759
+ 2011_09_26/2011_09_26_drive_0022_sync 123 l
1760
+ 2011_09_26/2011_09_26_drive_0022_sync 746 r
1761
+ 2011_09_30/2011_09_30_drive_0028_sync 2376 r
1762
+ 2011_09_29/2011_09_29_drive_0004_sync 90 l
1763
+ 2011_09_29/2011_09_29_drive_0004_sync 224 l
1764
+ 2011_09_26/2011_09_26_drive_0057_sync 307 l
1765
+ 2011_09_30/2011_09_30_drive_0020_sync 598 l
1766
+ 2011_09_28/2011_09_28_drive_0001_sync 79 r
1767
+ 2011_09_30/2011_09_30_drive_0034_sync 571 l
1768
+ 2011_09_26/2011_09_26_drive_0022_sync 656 r
1769
+ 2011_09_30/2011_09_30_drive_0020_sync 1017 l
1770
+ 2011_09_26/2011_09_26_drive_0032_sync 147 r
1771
+ 2011_10_03/2011_10_03_drive_0034_sync 441 r
1772
+ 2011_09_26/2011_09_26_drive_0014_sync 182 r
1773
+ 2011_09_30/2011_09_30_drive_0033_sync 1518 r
1774
+ 2011_09_30/2011_09_30_drive_0028_sync 2174 l
1775
+ 2011_09_26/2011_09_26_drive_0051_sync 433 r
1776
+ 2011_09_30/2011_09_30_drive_0028_sync 2749 l
external/Metric3D/training/kitti_json_files/generate_json.py ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+
4
+ common_root = 'd:/Datasets'
5
+ depth_root = 'kitti/kitti_depth/depth/data_depth_annotated'
6
+ raw_root = 'kitti_raw/kitti_raw'
7
+
8
+ #print(os.listdir(os.path.join(common_root, raw_root)))
9
+
10
+ mid = 'proj_depth/groundtruth'
11
+ mid_raw = 'data'
12
+
13
+ test_file_dict = {}
14
+ test_file_list = []
15
+ train_file_dict = {}
16
+
17
+
18
+ with open('D:/Datasets/eigen_train.txt') as f:
19
+ lines_train = f.readlines()
20
+
21
+ cnt = 0
22
+ invalid_cnt = 0
23
+
24
+ if True:
25
+ lines = lines_train
26
+
27
+ for l in lines:
28
+ l_ls = l.split(' ')
29
+ scene = l_ls[0]
30
+ date = scene.split('/')[0]
31
+ scene_no_date = scene.split('/')[1]
32
+ frame = l_ls[1]
33
+ frame = frame.zfill(10)
34
+
35
+ if 'l' in l_ls[2]:
36
+ cam = 'image_02'
37
+ P_str = 'P_rect_02'
38
+ elif 'r' in l_ls[2]:
39
+ cam = 'image_03'
40
+ P_str = 'P_rect_03'
41
+ else:
42
+ raise NotImplementedError()
43
+
44
+ depth_train = os.path.join(depth_root, 'train', scene_no_date, mid, cam , frame + '.png')
45
+ depth_val = os.path.join(depth_root, 'val', scene_no_date, mid, cam, frame+'.png')
46
+ rgb = os.path.join(raw_root, scene, cam, mid_raw, frame+'.png')
47
+
48
+ with open(os.path.join(common_root, raw_root, date, 'calib_cam_to_cam.txt')) as c:
49
+ lines_c = c.readlines()
50
+
51
+ for l_c in lines_c:
52
+ if P_str in l_c:
53
+ k_str = l_c.split(':')[1:]
54
+ k = k_str[0].split(' ')
55
+ cam_in = [float(k[1]), float(k[6]), float(k[3]), float(k[7])]
56
+
57
+ rgb_path = os.path.join(common_root, rgb)
58
+ assert os.path.join(common_root, rgb_path)
59
+
60
+ if os.path.exists(os.path.join(common_root, depth_train)):
61
+ depth_path = os.path.join(common_root, depth_train)
62
+ depth_rel = depth_train
63
+
64
+ else:
65
+ depth_path = os.path.join(common_root, depth_val)
66
+ depth_rel = depth_val
67
+
68
+ try:
69
+ assert os.path.exists(depth_path)
70
+ cnt += 1
71
+ except:
72
+ invalid_cnt += 1
73
+ continue
74
+
75
+ curr_file = [{'rgb':rgb.replace("\\", '/'), 'depth':depth_rel.replace("\\", '/'), 'cam_in':cam_in}]
76
+ test_file_list = test_file_list + curr_file
77
+
78
+ if ((cnt + invalid_cnt) % 1000 == 0):
79
+ print(cnt + invalid_cnt)
80
+
81
+ print(cnt, invalid_cnt)
82
+
83
+ train_file_dict['files'] = test_file_list
84
+ with open('eigen_train.json', 'w') as fj:
85
+ json.dump(train_file_dict, fj)
external/Metric3D/training/mono/__init__.py ADDED
File without changes
external/Metric3D/training/mono/datasets/__base_dataset__.py ADDED
@@ -0,0 +1,586 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ import mono.utils.transform as img_transform
11
+ import copy
12
+ from mono.utils.comm import get_func
13
+ import pickle
14
+ import logging
15
+ import multiprocessing as mp
16
+ import ctypes
17
+ """
18
+ Dataset annotations are saved in a Json file. All data, including rgb, depth, pose, and so on, captured within the same frame are saved in the same dict.
19
+ All frames are organized in a list. In each frame, it may contains the some or all of following data format.
20
+
21
+ # Annotations for the current central RGB/depth cameras.
22
+
23
+ 'rgb': rgb image in the current frame.
24
+ 'depth': depth map in the current frame.
25
+ 'sem': semantic mask in the current frame.
26
+ 'cam_in': camera intrinsic parameters of the current rgb camera.
27
+ 'cam_ex': camera extrinsic parameters of the current rgb camera.
28
+ 'cam_ex_path': path to the extrinsic parameters.
29
+ 'pose': pose in current frame.
30
+ 'timestamp_rgb': time stamp of current rgb image.
31
+
32
+ # Annotations for the left hand RGB/depth cameras.
33
+
34
+ 'rgb_l': rgb image of the left hand camera in the current frame.
35
+ 'depth_l': depth map of the left hand camera in the current frame.
36
+ 'sem_l': semantic mask of the left hand camera in the current frame.
37
+ 'cam_in_l': camera intrinsic parameters of the left hand rgb camera in the current frame.
38
+ 'cam_ex_l': camera extrinsic parameters of the left hand rgb camera in the current frame.
39
+ 'cam_ex_path': path to the extrinsic parameters.
40
+ 'pose_l': pose of the left hand camera in the incurrent frame.
41
+ 'timestamp_rgb_l': time stamp of the rgb img captured by the left hand camera.
42
+
43
+ # Annotations for the right RGB/depth cameras, which is on the left hand of the current central cameras.
44
+
45
+ 'rgb_r': rgb image of the right hand camera in the current frame.
46
+ 'depth_r': depth map of the right hand camera in the current frame.
47
+ 'sem_r': semantic mask of the right hand camera in the current frame.
48
+ 'cam_in_r': camera intrinsic parameters of the right hand rgb camera in the current frame.
49
+ 'cam_ex_r': camera extrinsic parameters of the right hand rgb camera in the current frame.
50
+ 'cam_ex_path_r': path to the extrinsic parameters.
51
+ 'pose_r': pose of the right hand camera in the incurrent frame.
52
+ 'timestamp_rgb_r': time stamp of the rgb img captured by the right hand camera.
53
+
54
+ # Annotations for the central RGB/depth cameras in the last frame.
55
+
56
+ 'rgb_pre': rgb image of the central camera in the last frame.
57
+ 'depth_pre': depth map of the central camera in the last frame.
58
+ 'sem_pre': semantic mask of the central camera in the last frame.
59
+ 'cam_in_pre': camera intrinsic parameters of the central rgb camera in the last frame.
60
+ 'cam_ex_pre': camera extrinsic parameters of the central rgb camera in the last frame.
61
+ 'cam_ex_path_pre': path to the extrinsic parameters.
62
+ 'pose_pre': pose of the central camera in the last frame.
63
+ 'timestamp_rgb_pre': time stamp of the rgb img captured by the central camera.
64
+
65
+ # Annotations for the central RGB/depth cameras in the next frame.
66
+
67
+ 'rgb_next': rgb image of the central camera in the next frame.
68
+ 'depth_next': depth map of the central camera in the next frame.
69
+ 'sem_next': semantic mask of the central camera in the next frame.
70
+ 'cam_in_next': camera intrinsic parameters of the central rgb camera in the next frame.
71
+ 'cam_ex_next': camera extrinsic parameters of the central rgb camera in the next frame.
72
+ 'cam_ex_path_next': path to the extrinsic parameters.
73
+ 'pose_next': pose of the central camera in the next frame.
74
+ 'timestamp_rgb_next': time stamp of the rgb img captured by the central camera.
75
+ """
76
+
77
+ class BaseDataset(Dataset):
78
+ def __init__(self, cfg, phase, **kwargs):
79
+ super(BaseDataset, self).__init__()
80
+ self.cfg = cfg
81
+ self.phase = phase
82
+ self.db_info = kwargs['db_info']
83
+
84
+ # root dir for data
85
+ self.data_root = os.path.join(self.db_info['db_root'], self.db_info['data_root'])
86
+ # depth/disp data root
87
+ disp_root = self.db_info['disp_root'] if 'disp_root' in self.db_info else None
88
+ self.disp_root = os.path.join(self.db_info['db_root'], disp_root) if disp_root is not None else None
89
+ depth_root = self.db_info['depth_root'] if 'depth_root' in self.db_info else None
90
+ self.depth_root = os.path.join(self.db_info['db_root'], depth_root) if depth_root is not None \
91
+ else self.data_root
92
+ # meta data root
93
+ meta_data_root = self.db_info['meta_data_root'] if 'meta_data_root' in self.db_info else None
94
+ self.meta_data_root = os.path.join(self.db_info['db_root'], meta_data_root) if meta_data_root is not None \
95
+ else None
96
+ # semantic segmentation labels root
97
+ sem_root = self.db_info['semantic_root'] if 'semantic_root' in self.db_info else None
98
+ self.sem_root = os.path.join(self.db_info['db_root'], sem_root) if sem_root is not None \
99
+ else None
100
+ # depth valid mask labels root
101
+ depth_mask_root = self.db_info['depth_mask_root'] if 'depth_mask_root' in self.db_info else None
102
+ self.depth_mask_root = os.path.join(self.db_info['db_root'], depth_mask_root) if depth_mask_root is not None \
103
+ else None
104
+ # surface normal labels root
105
+ norm_root = self.db_info['normal_root'] if 'normal_root' in self.db_info else None
106
+ self.norm_root = os.path.join(self.db_info['db_root'], norm_root) if norm_root is not None \
107
+ else None
108
+ # data annotations path
109
+ self.data_annos_path = os.path.join(self.db_info['db_root'], self.db_info['%s_annotations_path' % phase])
110
+
111
+ # load annotations
112
+ self.data_info = self.load_annotations()
113
+ whole_data_size = len(self.data_info['files'])
114
+
115
+ # sample a subset for training/validation/testing
116
+ # such method is deprecated, each training may get different sample list
117
+
118
+ cfg_sample_ratio = cfg.data[phase].sample_ratio
119
+ cfg_sample_size = int(cfg.data[phase].sample_size)
120
+ self.sample_size = int(whole_data_size * cfg_sample_ratio) if cfg_sample_size == -1 \
121
+ else (cfg_sample_size if cfg_sample_size < whole_data_size else whole_data_size)
122
+ random.seed(100) # set the random seed
123
+ sample_list_of_whole_data = random.sample(list(range(whole_data_size)), self.sample_size)
124
+
125
+ self.data_size = self.sample_size
126
+ self.annotations = {'files': [self.data_info['files'][i] for i in sample_list_of_whole_data]}
127
+ self.sample_list = list(range(self.data_size))
128
+
129
+ # config transforms for the input and label
130
+ self.transforms_cfg = cfg.data[phase]['pipeline']
131
+ self.transforms_lib = 'mono.utils.transform.'
132
+
133
+ self.img_file_type = ['.png', '.jpg', '.jpeg', '.bmp', '.tif']
134
+ self.np_file_type = ['.npz', '.npy']
135
+
136
+ # update canonical sparce information
137
+ self.data_basic = copy.deepcopy(kwargs)
138
+ canonical = self.data_basic.pop('canonical_space')
139
+ self.data_basic.update(canonical)
140
+ self.disp_scale = 10.0
141
+ self.depth_range = kwargs['depth_range'] # predefined depth range for the network
142
+ self.clip_depth_range = kwargs['clip_depth_range'] # predefined depth range for data processing
143
+ self.depth_normalize = kwargs['depth_normalize']
144
+
145
+ self.img_transforms = img_transform.Compose(self.build_data_transforms())
146
+ self.EPS = 1e-6
147
+
148
+ # self.tmpl_info = ['rgb_sr', 'rgb_pre', 'rgb_next']
149
+ # self.tgt2ref_pose_lookup = {'rgb_sr': 'cam_ex', 'rgb_pre': 'pose_pre', 'rgb_next': 'pose_next'}
150
+
151
+ # dataset info
152
+ self.data_name = cfg.data_name
153
+ self.data_type = cfg.data_type # there are mainly four types, i.e. ['rel', 'sfm', 'stereo', 'lidar']
154
+ self.logger = logging.getLogger()
155
+ self.logger.info(f'{self.data_name} in {self.phase} whole data size: {whole_data_size}')
156
+
157
+ # random crop size for training
158
+ crop_size = kwargs['crop_size']
159
+ shared_array_base = mp.Array(ctypes.c_int32, 2)
160
+ shared_array = np.ctypeslib.as_array(shared_array_base.get_obj())
161
+ shared_array[0] = crop_size[0]
162
+ shared_array[1] = crop_size[1]
163
+ # self.random_crop_size = torch.from_numpy(np.array([0,0])) #torch.from_numpy(shared_array)
164
+ self.random_crop_size = torch.from_numpy(shared_array)
165
+
166
+
167
+ def __name__(self):
168
+ return self.data_name
169
+
170
+ def __len__(self):
171
+ return self.data_size
172
+
173
+ def load_annotations(self):
174
+ if not os.path.exists(self.data_annos_path):
175
+ raise RuntimeError(f'Cannot find {self.data_annos_path} annotations.')
176
+
177
+ with open(self.data_annos_path, 'r') as f:
178
+ annos = json.load(f)
179
+ return annos
180
+
181
+ def build_data_transforms(self):
182
+ transforms_list = []
183
+ for transform in self.transforms_cfg:
184
+ args = copy.deepcopy(transform)
185
+ # insert the canonical space configs
186
+ args.update(self.data_basic)
187
+
188
+ obj_name = args.pop('type')
189
+ obj_path = self.transforms_lib + obj_name
190
+ obj_cls = get_func(obj_path)
191
+
192
+ obj = obj_cls(**args)
193
+ transforms_list.append(obj)
194
+ return transforms_list
195
+
196
+
197
+ def load_data(self, path: str, is_rgb_img: bool=False):
198
+ if not os.path.exists(path):
199
+ self.logger.info(f'>>>>{path} does not exist.')
200
+ # raise RuntimeError(f'{path} does not exist.')
201
+
202
+ data_type = os.path.splitext(path)[-1]
203
+ if data_type in self.img_file_type:
204
+ if is_rgb_img:
205
+ data = cv2.imread(path)
206
+ else:
207
+ data = cv2.imread(path, -1)
208
+ elif data_type in self.np_file_type:
209
+ data = np.load(path)
210
+ else:
211
+ raise RuntimeError(f'{data_type} is not supported in current version.')
212
+
213
+ try:
214
+ return data.squeeze()
215
+ except:
216
+ temp = 1
217
+ raise RuntimeError(f'{path} is not successfully loaded.')
218
+
219
+ def __getitem__(self, idx: int) -> dict:
220
+ if self.phase == 'test':
221
+ return self.get_data_for_test(idx)
222
+ else:
223
+ return self.get_data_for_trainval(idx)
224
+
225
+ def get_data_for_trainval(self, idx: int):
226
+ anno = self.annotations['files'][idx]
227
+ meta_data = self.load_meta_data(anno)
228
+
229
+ data_path = self.load_data_path(meta_data)
230
+ data_batch = self.load_batch(meta_data, data_path)
231
+ # if data_path['sem_path'] is not None:
232
+ # print(self.data_name)
233
+
234
+ curr_rgb, curr_depth, curr_normal, curr_sem, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_sem'], data_batch['curr_cam_model']
235
+ #curr_stereo_depth = data_batch['curr_stereo_depth']
236
+
237
+ # A patch for stereo depth dataloader (no need to modify specific datasets)
238
+ if 'curr_stereo_depth' in data_batch.keys():
239
+ curr_stereo_depth = data_batch['curr_stereo_depth']
240
+ else:
241
+ curr_stereo_depth = self.load_stereo_depth_label(None, H=curr_rgb.shape[0], W=curr_rgb.shape[1])
242
+
243
+ curr_intrinsic = meta_data['cam_in']
244
+ # data augmentation
245
+ transform_paras = dict(random_crop_size = self.random_crop_size) # dict()
246
+ assert curr_rgb.shape[:2] == curr_depth.shape == curr_normal.shape[:2] == curr_sem.shape
247
+ rgbs, depths, intrinsics, cam_models, normals, other_labels, transform_paras = self.img_transforms(
248
+ images=[curr_rgb, ],
249
+ labels=[curr_depth, ],
250
+ intrinsics=[curr_intrinsic,],
251
+ cam_models=[curr_cam_model, ],
252
+ normals = [curr_normal, ],
253
+ other_labels=[curr_sem, curr_stereo_depth],
254
+ transform_paras=transform_paras)
255
+ # process sky masks
256
+ sem_mask = other_labels[0].int()
257
+ # clip depth map
258
+ depth_out = self.normalize_depth(depths[0])
259
+ # set the depth of sky region to the invalid
260
+ depth_out[sem_mask==142] = -1 # self.depth_normalize[1] - 1e-6
261
+ # get inverse depth
262
+ inv_depth = self.depth2invdepth(depth_out, sem_mask==142)
263
+ filename = os.path.basename(meta_data['rgb'])[:-4] + '.jpg'
264
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
265
+ cam_models_stacks = [
266
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
267
+ for i in [2, 4, 8, 16, 32]
268
+ ]
269
+
270
+ # stereo_depth
271
+ if 'label_scale_factor' not in transform_paras.keys():
272
+ transform_paras['label_scale_factor'] = 1
273
+ stereo_depth_pre_trans = other_labels[1] * (other_labels[1] > 0.3) * (other_labels[1] < 200)
274
+ stereo_depth = stereo_depth_pre_trans * transform_paras['label_scale_factor']
275
+ stereo_depth = self.normalize_depth(stereo_depth)
276
+
277
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
278
+ data = dict(input=rgbs[0],
279
+ target=depth_out,
280
+ intrinsic=curr_intrinsic_mat,
281
+ filename=filename,
282
+ dataset=self.data_name,
283
+ cam_model=cam_models_stacks,
284
+ pad=torch.tensor(pad),
285
+ data_type=[self.data_type, ],
286
+ sem_mask=sem_mask.int(),
287
+ stereo_depth= stereo_depth,
288
+ normal=normals[0],
289
+ inv_depth=inv_depth,
290
+ scale=transform_paras['label_scale_factor'])
291
+ return data
292
+
293
+ def get_data_for_test(self, idx: int):
294
+ anno = self.annotations['files'][idx]
295
+ meta_data = self.load_meta_data(anno)
296
+ data_path = self.load_data_path(meta_data)
297
+ data_batch = self.load_batch(meta_data, data_path)
298
+ # load data
299
+ curr_rgb, curr_depth, curr_normal, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_cam_model']
300
+ ori_curr_intrinsic = meta_data['cam_in']
301
+
302
+ # get crop size
303
+ transform_paras = dict()
304
+ rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
305
+ images=[curr_rgb,], #+ tmpl_rgbs,
306
+ labels=[curr_depth, ],
307
+ intrinsics=[ori_curr_intrinsic, ], # * (len(tmpl_rgbs) + 1),
308
+ cam_models=[curr_cam_model, ],
309
+ transform_paras=transform_paras)
310
+ # depth in original size and orignial metric***
311
+ depth_out = self.clip_depth(curr_depth) * self.depth_range[1] # self.clip_depth(depths[0]) #
312
+ inv_depth = self.depth2invdepth(depth_out, np.zeros_like(depth_out, dtype=np.bool))
313
+ filename = os.path.basename(meta_data['rgb'])[:-4] + '.jpg'
314
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
315
+ ori_curr_intrinsic_mat = self.intrinsics_list2mat(ori_curr_intrinsic)
316
+
317
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
318
+ scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
319
+ cam_models_stacks = [
320
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
321
+ for i in [2, 4, 8, 16, 32]
322
+ ]
323
+ raw_rgb = torch.from_numpy(curr_rgb)
324
+ curr_normal = torch.from_numpy(curr_normal.transpose((2,0,1)))
325
+
326
+
327
+ data = dict(input=rgbs[0],
328
+ target=depth_out,
329
+ intrinsic=curr_intrinsic_mat,
330
+ filename=filename,
331
+ dataset=self.data_name,
332
+ cam_model=cam_models_stacks,
333
+ pad=pad,
334
+ scale=scale_ratio,
335
+ raw_rgb=raw_rgb,
336
+ sample_id=idx,
337
+ data_path=meta_data['rgb'],
338
+ inv_depth=inv_depth,
339
+ normal=curr_normal,
340
+ )
341
+ return data
342
+
343
+ def load_data_path(self, meta_data):
344
+ curr_rgb_path = os.path.join(self.data_root, meta_data['rgb'])
345
+ curr_depth_path = os.path.join(self.depth_root, meta_data['depth'])
346
+ curr_sem_path = os.path.join(self.sem_root, meta_data['sem']) \
347
+ if self.sem_root is not None and ('sem' in meta_data) and (meta_data['sem'] is not None) \
348
+ else None
349
+ # matterport3d separates xyz into three images
350
+ if ('normal' in meta_data) and (meta_data['normal'] is not None) and (self.norm_root is not None):
351
+ if isinstance(meta_data['normal'], dict):
352
+ curr_norm_path = {}
353
+ for k,v in meta_data['normal'].items():
354
+ curr_norm_path[k] = os.path.join(self.norm_root, v)
355
+ else:
356
+ curr_norm_path = os.path.join(self.norm_root, meta_data['normal'])
357
+ else:
358
+ curr_norm_path = None
359
+ curr_depth_mask_path = os.path.join(self.depth_mask_root, meta_data['depth_mask']) \
360
+ if self.depth_mask_root is not None and ('depth_mask' in meta_data) and (meta_data['depth_mask'] is not None) \
361
+ else None
362
+
363
+ if ('disp' in meta_data) and (meta_data['disp'] is not None) and (self.disp_root is not None):
364
+ if isinstance(meta_data['disp'], dict):
365
+ curr_disp_path = {}
366
+ for k,v in meta_data['disp'].items():
367
+ curr_disp_path[k] = os.path.join(self.disp_root, v)
368
+ else:
369
+ curr_disp_path = os.path.join(self.disp_root, meta_data['disp'])
370
+ else:
371
+ curr_disp_path = None
372
+
373
+ data_path=dict(
374
+ rgb_path=curr_rgb_path,
375
+ depth_path=curr_depth_path,
376
+ sem_path=curr_sem_path,
377
+ normal_path=curr_norm_path,
378
+ disp_path=curr_disp_path,
379
+ depth_mask_path=curr_depth_mask_path,
380
+ )
381
+ return data_path
382
+
383
+ def load_batch(self, meta_data, data_path):
384
+ curr_intrinsic = meta_data['cam_in']
385
+ # load rgb/depth
386
+ curr_rgb, curr_depth = self.load_rgb_depth(data_path['rgb_path'], data_path['depth_path'])
387
+ # get semantic labels
388
+ curr_sem = self.load_sem_label(data_path['sem_path'], curr_depth)
389
+ # create camera model
390
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], curr_intrinsic)
391
+ # get normal labels
392
+ curr_normal = self.load_norm_label(data_path['normal_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1])
393
+ # get depth mask
394
+ depth_mask = self.load_depth_valid_mask(data_path['depth_mask_path'])
395
+ curr_depth[~depth_mask] = -1
396
+ # get stereo depth
397
+ curr_stereo_depth = self.load_stereo_depth_label(data_path['disp_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1])
398
+
399
+ data_batch = dict(
400
+ curr_rgb = curr_rgb,
401
+ curr_depth = curr_depth,
402
+ curr_sem = curr_sem,
403
+ curr_normal = curr_normal,
404
+ curr_cam_model=curr_cam_model,
405
+ curr_stereo_depth=curr_stereo_depth,
406
+ )
407
+ return data_batch
408
+
409
+
410
+ def clip_depth(self, depth: np.array) -> np.array:
411
+ depth[(depth>self.clip_depth_range[1]) | (depth<self.clip_depth_range[0])] = -1
412
+ depth /= self.depth_range[1]
413
+ depth[depth<self.EPS] = -1
414
+ return depth
415
+
416
+ def normalize_depth(self, depth: np.array) -> np.array:
417
+ depth /= self.depth_range[1]
418
+ depth[depth<self.EPS] = -1
419
+ return depth
420
+
421
+ def process_depth(self, depth: np.array, rgb:np.array=None):
422
+ return depth
423
+
424
+ def create_cam_model(self, H : int, W : int, intrinsics : list) -> np.array:
425
+ """
426
+ Encode the camera model (focal length and principle point) to a 4-channel map.
427
+ """
428
+ fx, fy, u0, v0 = intrinsics
429
+ f = (fx + fy) / 2.0
430
+ # principle point location
431
+ x_row = np.arange(0, W).astype(np.float32)
432
+ x_row_center_norm = (x_row - u0) / W
433
+ x_center = np.tile(x_row_center_norm, (H, 1)) # [H, W]
434
+
435
+ y_col = np.arange(0, H).astype(np.float32)
436
+ y_col_center_norm = (y_col - v0) / H
437
+ y_center = np.tile(y_col_center_norm, (W, 1)).T
438
+
439
+ # FoV
440
+ fov_x = np.arctan(x_center / (f / W))
441
+ fov_y = np.arctan(y_center/ (f / H))
442
+
443
+ cam_model = np.stack([x_center, y_center, fov_x, fov_y], axis=2)
444
+ return cam_model
445
+
446
+ def check_data(self, data_dict : dict):
447
+ for k, v in data_dict.items():
448
+ if v is None:
449
+ # print(f'{self.data_name}, {k} cannot be read!')
450
+ self.logger.info(f'{self.data_name}, {k} cannot be read!')
451
+
452
+ def intrinsics_list2mat(self, intrinsics: torch.tensor) -> torch.tensor:
453
+ """
454
+ Create camera intrinsic matrix.
455
+ Args:
456
+ intrinsics (torch.tensor, [4,]): list of camera intrinsic parameters.
457
+ returns:
458
+ intrinsics_mat (torch.tensor, [3x3]): camera intrinsic parameters matrix.
459
+ """
460
+ intrinsics_mat = torch.zeros((3,3)).float()
461
+ intrinsics_mat[0, 0] = intrinsics[0]
462
+ intrinsics_mat[1, 1] = intrinsics[1]
463
+ intrinsics_mat[0, 2] = intrinsics[2]
464
+ intrinsics_mat[1, 2] = intrinsics[3]
465
+ intrinsics_mat[2, 2] = 1.0
466
+ return intrinsics_mat
467
+
468
+ # def load_tmpl_image(self, curr_rgb: np.array, meta_data: dict) -> dict:
469
+ # """
470
+ # Load consecutive RGB frames.
471
+ # Args:
472
+ # anno: the annotation for this group.
473
+ # curr_rgb: rgb image of the current frame.
474
+ # meta_data: meta data information.
475
+ # Returns:
476
+ # tmpl_annos: temporal rgbs.
477
+ # """
478
+ # w_tmpl = False
479
+
480
+ # tmpl_list = []
481
+ # # organize temporal annotations
482
+ # for i in self.tmpl_info:
483
+ # if (i in meta_data) and (meta_data[i] is not None) and os.path.exists(os.path.join(self.data_root, meta_data[i])):
484
+ # tmpl_list.append(os.path.join(self.data_root, meta_data[i]))
485
+
486
+ # if len(tmpl_list) == 0:
487
+ # rgb_tmpl = curr_rgb.copy()
488
+ # else:
489
+ # id = np.random.randint(len(tmpl_list))
490
+ # rgb_tmpl = self.load_data(tmpl_list[id], is_rgb_img=True)
491
+ # w_tmpl = True
492
+
493
+ # tmpl_annos = dict(
494
+ # tmpl_rgb_list = [rgb_tmpl,],
495
+ # w_tmpl = w_tmpl
496
+ # )
497
+ # return tmpl_annos
498
+
499
+ def load_meta_data(self, anno: dict) -> dict:
500
+ """
501
+ Load meta data information.
502
+ """
503
+ if self.meta_data_root is not None and ('meta_data' in anno or 'meta' in anno):
504
+ meta_data_path = os.path.join(self.meta_data_root, anno['meta_data']) if 'meta_data' in anno else os.path.join(self.meta_data_root, anno['meta'])
505
+ with open(meta_data_path, 'rb') as f:
506
+ meta_data = pickle.load(f)
507
+ meta_data.update(anno)
508
+ else:
509
+ meta_data = anno
510
+ return meta_data
511
+
512
+ def load_rgb_depth(self, rgb_path: str, depth_path: str):
513
+ """
514
+ Load the rgb and depth map with the paths.
515
+ """
516
+ rgb = self.load_data(rgb_path, is_rgb_img=True)
517
+ if rgb is None:
518
+ self.logger.info(f'>>>>{rgb_path} has errors.')
519
+
520
+ depth = self.load_data(depth_path)
521
+ if depth is None:
522
+ self.logger.info(f'{depth_path} has errors.')
523
+
524
+ # self.check_data(dict(
525
+ # rgb_path=rgb,
526
+ # depth_path=depth,
527
+ # ))
528
+ depth = depth.astype(np.float)
529
+ # if depth.shape != rgb.shape[:2]:
530
+ # print(f'no-equal in {self.data_name}')
531
+ # depth = cv2.resize(depth, rgb.shape[::-1][1:])
532
+
533
+ depth = self.process_depth(depth, rgb)
534
+ return rgb, depth
535
+
536
+ def load_sem_label(self, sem_path, depth=None, sky_id=142) -> np.array:
537
+ H, W = depth.shape
538
+ # if sem_path is not None:
539
+ # print(self.data_name)
540
+ sem_label = cv2.imread(sem_path, 0) if sem_path is not None \
541
+ else np.ones((H, W), dtype=np.int) * -1
542
+ if sem_label is None:
543
+ sem_label = np.ones((H, W), dtype=np.int) * -1
544
+ # set dtype to int before
545
+ sem_label = sem_label.astype(np.int)
546
+ sem_label[sem_label==255] = -1
547
+
548
+ # mask invalid sky region
549
+ mask_depth_valid = depth > 1e-8
550
+ invalid_sky_region = (sem_label==142) & (mask_depth_valid)
551
+ if self.data_type in ['lidar', 'sfm', 'denselidar', 'denselidar_nometric']:
552
+ sem_label[invalid_sky_region] = -1
553
+ return sem_label
554
+
555
+ def load_depth_valid_mask(self, depth_mask_path, depth=None) -> np.array:
556
+ if depth_mask_path is None:
557
+ return np.ones_like(depth, dtype=np.bool)
558
+ data_type = os.path.splitext(depth_mask_path)[-1]
559
+ if data_type in self.img_file_type:
560
+ data = cv2.imread(depth_mask_path, -1)
561
+ elif data_type in self.np_file_type:
562
+ data = np.load(depth_mask_path)
563
+ else:
564
+ raise RuntimeError(f'{data_type} is not supported in current version.')
565
+ data = data.astype(np.bool)
566
+ return data
567
+
568
+ def load_norm_label(self, norm_path, H, W):
569
+ norm_gt = np.zeros((H, W, 3)).astype(np.float32)
570
+ return norm_gt
571
+
572
+ def load_stereo_depth_label(self, disp_path, H, W):
573
+ stereo_depth_gt = np.zeros((H, W, 1)).astype(np.float32)
574
+ return stereo_depth_gt
575
+
576
+ def depth2invdepth(self, depth, sky_mask):
577
+ inv_depth = 1.0 / depth * self.disp_scale
578
+ inv_depth[depth<1e-6] = -1.0
579
+ inv_depth[inv_depth < 0] = -1.0
580
+ inv_depth[sky_mask] = 0
581
+ return inv_depth
582
+
583
+
584
+ def set_random_crop_size(self, random_crop_size):
585
+ self.random_crop_size[0] = random_crop_size[0]
586
+ self.random_crop_size[1] = random_crop_size[1]
external/Metric3D/training/mono/datasets/__init__.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from .__base_dataset__ import BaseDataset
2
+ from .ddad_dataset import DDADDataset
3
+ from .mapillary_psd_dataset import MapillaryPSDDataset
4
+ from .argovers2_dataset import Argovers2Dataset
5
+ from .cityscapes_dataset import CityscapesDataset
6
+ from .drivingstereo_dataset import DrivingStereoDataset
7
+ from .dsec_dataset import DSECDataset
8
+ from .lyft_dataset import LyftDataset
9
+ from .diml_dataset import DIMLDataset
10
+ from .any_dataset import AnyDataset
11
+ from .nyu_dataset import NYUDataset
12
+ from .scannet_dataset import ScanNetDataset
13
+ from .diode_dataset import DIODEDataset
14
+ from .kitti_dataset import KITTIDataset
15
+ from .pandaset_dataset import PandasetDataset
16
+ from .taskonomy_dataset import TaskonomyDataset
17
+ from .uasol_dataset import UASOLDataset
18
+ from .nuscenes_dataset import NuScenesDataset
19
+ from .eth3d_dataset import ETH3DDataset
20
+ from .waymo_dataset import WaymoDataset
21
+ from .ibims_dataset import IBIMSDataset
22
+
23
+ from .replica_dataset import ReplicaDataset
24
+ from .hm3d_dataset import HM3DDataset
25
+ from .matterport3d_dataset import Matterport3DDataset
26
+ from .virtualkitti_dataset import VKITTIDataset
27
+ from .blendedmvg_omni_dataset import BlendedMVGOmniDataset
28
+ from .hypersim_dataset import HypersimDataset
29
+
30
+ __all__ = ['BaseDataset', 'DDADDataset', 'MapillaryPSDDataset',
31
+ 'Argovers2Dataset', 'CityscapesDataset', 'DrivingStereoDataset', 'DSECDataset', 'LyftDataset', 'DIMLDataset', 'AnyDataset',
32
+ 'NYUDataset', 'ScanNetDataset', 'DIODEDataset', 'KITTIDataset', 'PandasetDataset', 'SUNRGBDDataset',
33
+ 'TaskonomyDataset',
34
+ 'UASOLDataset', 'NuScenesDataset',
35
+ 'G8V1Dataset', 'ETH3DDataset', 'WaymoDataset',
36
+ 'IBIMSDataset',
37
+ 'ReplicaDataset', 'HM3DDataset', 'Matterport3DDataset', 'VKITTIDataset',
38
+ 'BlendedMVGOmniDataset']
external/Metric3D/training/mono/datasets/any_dataset.py ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ import copy
11
+ from .__base_dataset__ import BaseDataset
12
+ import mono.utils.transform as img_transform
13
+
14
+
15
+ class AnyDataset(BaseDataset):
16
+ def __init__(self, cfg, phase, **kwargs):
17
+ super(AnyDataset, self).__init__(
18
+ cfg=cfg,
19
+ phase=phase,
20
+ **kwargs)
21
+
22
+ self.cfg = cfg
23
+ self.phase = phase
24
+ self.mldb_info = kwargs['mldb_info']
25
+
26
+ # root dir for data
27
+ self.data_root = os.path.join(self.mldb_info['mldb_root'], self.mldb_info['data_root'])
28
+ # depth/disp data root
29
+ disp_root = self.mldb_info['disp_root'] if 'disp_root' in self.mldb_info else None
30
+ self.disp_root = os.path.join(self.mldb_info['mldb_root'], disp_root) if disp_root is not None else None
31
+ depth_root = self.mldb_info['depth_root'] if 'depth_root' in self.mldb_info else None
32
+ self.depth_root = os.path.join(self.mldb_info['mldb_root'], depth_root) if depth_root is not None \
33
+ else self.data_root
34
+ # meta data root
35
+ meta_data_root = self.mldb_info['meta_data_root'] if 'meta_data_root' in self.mldb_info else None
36
+ self.meta_data_root = os.path.join(self.mldb_info['mldb_root'], meta_data_root) if meta_data_root is not None \
37
+ else None
38
+ # semantic segmentation labels root
39
+ sem_root = self.mldb_info['semantic_root'] if 'semantic_root' in self.mldb_info else None
40
+ self.sem_root = os.path.join(self.mldb_info['mldb_root'], sem_root) if sem_root is not None \
41
+ else None
42
+
43
+ # data annotations path
44
+ self.data_annos_path = '/yvan1/data/NuScenes/NuScenes/annotations/train_ring_annotations.json' # fill this
45
+
46
+ # load annotations
47
+ annotations = self.load_annotations()
48
+ whole_data_size = len(annotations['files'])
49
+
50
+ cfg_sample_ratio = cfg.data[phase].sample_ratio
51
+ cfg_sample_size = int(cfg.data[phase].sample_size)
52
+ self.sample_size = int(whole_data_size * cfg_sample_ratio) if cfg_sample_size == -1 \
53
+ else (cfg_sample_size if cfg_sample_size < whole_data_size else whole_data_size)
54
+ sample_list_of_whole_data = list(range(whole_data_size))[:self.sample_size]
55
+ self.data_size = self.sample_size
56
+ sample_list_of_whole_data = random.sample(list(range(whole_data_size)), whole_data_size)
57
+ self.annotations = {'files': [annotations['files'][i] for i in sample_list_of_whole_data]}
58
+ self.sample_list = list(range(self.data_size))
59
+
60
+ # config transforms for the input and label
61
+ self.transforms_cfg = cfg.data[phase]['pipeline']
62
+ self.transforms_lib = 'mono.utils.transform.'
63
+
64
+ self.img_file_type = ['.png', '.jpg', '.jpeg', '.bmp', '.tif']
65
+ self.np_file_type = ['.npz', '.npy']
66
+
67
+ # update canonical sparce information
68
+ self.data_basic = copy.deepcopy(kwargs)
69
+ canonical = self.data_basic.pop('canonical_space')
70
+ self.data_basic.update(canonical)
71
+ self.depth_range = kwargs['depth_range'] # predefined depth range for the network
72
+ self.clip_depth_range = kwargs['clip_depth_range'] # predefined depth range for data processing
73
+ self.depth_normalize = kwargs['depth_normalize']
74
+
75
+ self.img_transforms = img_transform.Compose(self.build_data_transforms())
76
+ self.EPS = 1e-8
77
+
78
+ self.tmpl_info = ['rgb_sr', 'rgb_pre', 'rgb_next']
79
+
80
+ # dataset info
81
+ self.data_name = cfg.data_name
82
+ self.data_type = cfg.data_type # there are mainly four types, i.e. ['rel', 'sfm', 'stereo', 'lidar']
83
+
84
+ def __getitem__(self, idx: int) -> dict:
85
+ return self.get_data_for_test(idx)
86
+
87
+ def get_data_for_test(self, idx: int):
88
+ # basic info
89
+ anno = self.annotations['files'][idx]
90
+ curr_rgb_path = os.path.join(self.data_root, anno['CAM_FRONT_RIGHT']['rgb']) # Lyft: CAM_FRONT_LEFT
91
+ curr_depth_path = os.path.join(self.depth_root, anno['CAM_FRONT_RIGHT']['depth'])
92
+ meta_data = self.load_meta_data(anno['CAM_FRONT_RIGHT'])
93
+ ori_curr_intrinsic = meta_data['cam_in']
94
+
95
+ curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
96
+ ori_h, ori_w, _ = curr_rgb.shape
97
+ # create camera model
98
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], ori_curr_intrinsic)
99
+ # load tmpl rgb info
100
+ # tmpl_annos = self.load_tmpl_annos(anno, curr_rgb, meta_data)
101
+ # tmpl_rgb = tmpl_annos['tmpl_rgb_list'] # list of reference rgbs
102
+
103
+ transform_paras = dict()
104
+ rgbs, depths, intrinsics, cam_models, other_labels, transform_paras = self.img_transforms(
105
+ images=[curr_rgb, ],
106
+ labels=[curr_depth, ],
107
+ intrinsics=[ori_curr_intrinsic,],
108
+ cam_models=[curr_cam_model, ],
109
+ transform_paras=transform_paras)
110
+ # depth in augmented size
111
+ # depth_out = self.clip_depth(depths[0])
112
+ # depth in original size
113
+ #depth_out = self.clip_depth(curr_depth)
114
+ depth_out = curr_depth
115
+
116
+ filename = os.path.basename(curr_rgb_path)
117
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
118
+
119
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
120
+ scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
121
+ cam_models_stacks = [
122
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
123
+ for i in [2, 4, 8, 16, 32]
124
+ ]
125
+ raw_rgb = torch.from_numpy(curr_rgb)
126
+ data = dict(input=rgbs[0],
127
+ target=depth_out,
128
+ intrinsic=curr_intrinsic_mat,
129
+ filename=filename,
130
+ dataset=self.data_name,
131
+ cam_model=cam_models_stacks,
132
+ # ref_input=rgbs[1:],
133
+ # tmpl_flg=tmpl_annos['w_tmpl'],
134
+ pad=pad,
135
+ scale=scale_ratio,
136
+ raw_rgb=raw_rgb)
137
+ return data
138
+
139
+
140
+ def process_depth(self, depth):
141
+ depth[depth>65500] = 0
142
+ depth /= 200.0
143
+ return depth
144
+
145
+
146
+
147
+ if __name__ == '__main__':
148
+ from mmcv.utils import Config
149
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
150
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
151
+ print(dataset_i)
152
+
external/Metric3D/training/mono/datasets/argovers2_dataset.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+ import pickle
12
+
13
+ class Argovers2Dataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(Argovers2Dataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ def process_depth(self, depth, rgb):
22
+ depth[depth>65500] = 0
23
+ depth /= self.metric_scale
24
+ return depth
25
+
26
+
27
+
28
+ if __name__ == '__main__':
29
+ from mmcv.utils import Config
30
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
31
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
32
+ print(dataset_i)
33
+
external/Metric3D/training/mono/datasets/blendedmvg_omni_dataset.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class BlendedMVGOmniDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(BlendedMVGOmniDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+ #self.cap_range = self.depth_range # in meter
21
+
22
+ # def __getitem__(self, idx: int) -> dict:
23
+ # if self.phase == 'test':
24
+ # return self.get_data_for_test(idx)
25
+ # else:
26
+ # return self.get_data_for_trainval(idx)
27
+
28
+
29
+ def process_depth(self, depth: np.array, rgb: np.array) -> np.array:
30
+ depth[depth>60000] = 0
31
+ depth = depth / self.metric_scale
32
+ return depth
external/Metric3D/training/mono/datasets/cityscapes_dataset.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class CityscapesDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(CityscapesDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ def process_depth(self, depth, rgb):
22
+ depth[depth>65500] = 0
23
+ depth /= self.metric_scale
24
+ return depth
25
+
26
+
27
+
28
+ if __name__ == '__main__':
29
+ from mmcv.utils import Config
30
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
31
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
32
+ print(dataset_i)
33
+
external/Metric3D/training/mono/datasets/ddad_dataset.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class DDADDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(DDADDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+ #self.cap_range = self.depth_range # in meter
21
+
22
+
23
+ def process_depth(self, depth, rgb):
24
+ depth[depth>65500] = 0
25
+ depth /= 200.0
26
+ # depth[(depth>self.cap_range[1]) | (depth<self.cap_range[0])] = -1
27
+ # depth /= self.cap_range[1]
28
+ return depth
29
+
30
+
31
+
32
+ if __name__ == '__main__':
33
+ from mmcv.utils import Config
34
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
35
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
36
+ print(dataset_i)
37
+
external/Metric3D/training/mono/datasets/diml_dataset.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+ import pickle
12
+
13
+ class DIMLDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(DIMLDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ def load_meta_data(self, anno: dict) -> dict:
22
+ """
23
+ Load meta data information.
24
+ """
25
+ if self.meta_data_root is not None and ('meta_data' in anno or 'meta' in anno):
26
+ meta_data_path = os.path.join(self.meta_data_root, anno['meta_data']) if 'meta_data' in anno else os.path.join(self.meta_data_root, anno['meta'])
27
+ with open(meta_data_path, 'rb') as f:
28
+ meta_data = pickle.load(f)
29
+ meta_data.update(anno)
30
+ else:
31
+ meta_data = anno
32
+
33
+ # DIML_indoor has no cam_in
34
+ if 'cam_in' not in meta_data:
35
+ meta_data['cam_in'] = [1081, 1081, 704, 396]
36
+ return meta_data
37
+
38
+ def process_depth(self, depth, rgb):
39
+ depth[depth>65500] = 0
40
+ depth /= self.metric_scale
41
+ h, w, _ = rgb.shape # to rgb size
42
+ depth_resize = cv2.resize(depth, (w, h), interpolation=cv2.INTER_NEAREST)
43
+ return depth_resize
44
+
45
+
46
+
47
+
48
+ if __name__ == '__main__':
49
+ from mmcv.utils import Config
50
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
51
+ dataset_i = DIMLDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
52
+ print(dataset_i)
53
+
external/Metric3D/training/mono/datasets/diode_dataset.py ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ def creat_uv_mesh(H, W):
14
+ y, x = np.meshgrid(np.arange(0, H, dtype=np.float), np.arange(0, W, dtype=np.float), indexing='ij')
15
+ meshgrid = np.stack((x,y))
16
+ ones = np.ones((1,H*W), dtype=np.float)
17
+ xy = meshgrid.reshape(2, -1)
18
+ return np.concatenate([xy, ones], axis=0)
19
+
20
+ class DIODEDataset(BaseDataset):
21
+ def __init__(self, cfg, phase, **kwargs):
22
+ super(DIODEDataset, self).__init__(
23
+ cfg=cfg,
24
+ phase=phase,
25
+ **kwargs)
26
+ self.metric_scale = cfg.metric_scale
27
+
28
+ # meshgrid for depth reprojection
29
+ self.xy = creat_uv_mesh(768, 1024)
30
+
31
+ def get_data_for_test(self, idx: int):
32
+ anno = self.annotations['files'][idx]
33
+ meta_data = self.load_meta_data(anno)
34
+ data_path = self.load_data_path(meta_data)
35
+ data_batch = self.load_batch(meta_data, data_path)
36
+ # load data
37
+ curr_rgb, curr_depth, curr_normal, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_cam_model']
38
+ ori_curr_intrinsic = meta_data['cam_in']
39
+
40
+ # get crop size
41
+ transform_paras = dict()
42
+ rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
43
+ images=[curr_rgb,], #+ tmpl_rgbs,
44
+ labels=[curr_depth, ],
45
+ intrinsics=[ori_curr_intrinsic, ], # * (len(tmpl_rgbs) + 1),
46
+ cam_models=[curr_cam_model, ],
47
+ transform_paras=transform_paras)
48
+ # depth in original size and orignial metric***
49
+ depth_out = self.clip_depth(curr_depth) * self.depth_range[1] # self.clip_depth(depths[0]) #
50
+ inv_depth = self.depth2invdepth(depth_out, np.zeros_like(depth_out, dtype=np.bool))
51
+ filename = os.path.basename(meta_data['rgb'])[:-4] + '.jpg'
52
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
53
+ ori_curr_intrinsic_mat = self.intrinsics_list2mat(ori_curr_intrinsic)
54
+
55
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
56
+ scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
57
+ cam_models_stacks = [
58
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
59
+ for i in [2, 4, 8, 16, 32]
60
+ ]
61
+ raw_rgb = torch.from_numpy(curr_rgb)
62
+ curr_normal = torch.from_numpy(curr_normal.transpose((2,0,1)))
63
+
64
+
65
+ data = dict(input=rgbs[0],
66
+ target=depth_out,
67
+ intrinsic=curr_intrinsic_mat,
68
+ filename=filename,
69
+ dataset=self.data_name,
70
+ cam_model=cam_models_stacks,
71
+ pad=pad,
72
+ scale=scale_ratio,
73
+ raw_rgb=raw_rgb,
74
+ sample_id=idx,
75
+ data_path=meta_data['rgb'],
76
+ inv_depth=inv_depth,
77
+ normal=curr_normal,
78
+ )
79
+ return data
80
+
81
+
82
+ # def get_data_for_trainval(self, idx: int):
83
+ # anno = self.annotations['files'][idx]
84
+ # meta_data = self.load_meta_data(anno)
85
+
86
+ # # curr_rgb_path = os.path.join(self.data_root, meta_data['rgb'])
87
+ # # curr_depth_path = os.path.join(self.depth_root, meta_data['depth'])
88
+ # # curr_sem_path = os.path.join(self.sem_root, meta_data['sem']) if self.sem_root is not None and ('sem' in meta_data) and (meta_data['sem'] is not None) else None
89
+ # # curr_depth_mask_path = os.path.join(self.depth_mask_root, meta_data['depth_mask']) if self.depth_mask_root is not None and ('depth_mask' in meta_data) and (meta_data['depth_mask'] is not None) else None
90
+ # data_path = self.load_data_path(meta_data)
91
+ # data_batch = self.load_batch(meta_data, data_path)
92
+
93
+ # curr_rgb, curr_depth, curr_normal, curr_sem, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_sem'], data_batch['curr_cam_model']
94
+
95
+ # # load data
96
+ # # curr_intrinsic = meta_data['cam_in']
97
+ # # curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
98
+
99
+ # # # mask the depth
100
+ # # curr_depth = curr_depth.squeeze()
101
+ # # depth_mask = self.load_depth_valid_mask(curr_depth_mask_path, curr_depth)
102
+ # # curr_depth[~depth_mask] = -1
103
+
104
+
105
+ # # # get semantic labels
106
+ # # curr_sem = self.load_sem_label(curr_sem_path, curr_depth)
107
+ # # # create camera model
108
+ # # curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], curr_intrinsic)
109
+
110
+ # # get crop size
111
+ # transform_paras = dict(random_crop_size = self.random_crop_size)
112
+ # rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
113
+ # images=[curr_rgb, ],
114
+ # labels=[curr_depth, ],
115
+ # intrinsics=[curr_intrinsic,],
116
+ # cam_models=[curr_cam_model, ],
117
+ # other_labels=[curr_sem, ],
118
+ # transform_paras=transform_paras)
119
+ # # process sky masks
120
+ # sem_mask = other_labels[0].int()
121
+
122
+ # # clip depth map
123
+ # depth_out = self.normalize_depth(depths[0])
124
+ # # set the depth in sky region to the maximum depth
125
+ # depth_out[sem_mask==142] = -1 #self.depth_normalize[1] - 1e-6
126
+ # filename = os.path.basename(meta_data['rgb'])
127
+ # curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
128
+ # cam_models_stacks = [
129
+ # torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
130
+ # for i in [2, 4, 8, 16, 32]
131
+ # ]
132
+ # pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
133
+ # data = dict(input=rgbs[0],
134
+ # target=depth_out,
135
+ # intrinsic=curr_intrinsic_mat,
136
+ # filename=filename,
137
+ # dataset=self.data_name,
138
+ # cam_model=cam_models_stacks,
139
+ # #ref_input=rgbs[1:],
140
+ # # tmpl_flg=tmpl_annos['w_tmpl'],
141
+ # pad=torch.tensor(pad),
142
+ # data_type=[self.data_type, ],
143
+ # sem_mask=sem_mask.int())
144
+ # return data
145
+
146
+ # def get_data_for_test(self, idx: int):
147
+ # anno = self.annotations['files'][idx]
148
+ # meta_data = self.load_meta_data(anno)
149
+ # curr_rgb_path = os.path.join(self.data_root, meta_data['rgb'])
150
+ # curr_depth_path = os.path.join(self.depth_root, meta_data['depth'])
151
+ # curr_depth_mask_path = os.path.join(self.depth_mask_root, meta_data['depth_mask']) if self.depth_mask_root is not None and ('depth_mask' in meta_data) and (meta_data['depth_mask'] is not None) else None
152
+
153
+ # # load data
154
+ # ori_curr_intrinsic = meta_data['cam_in']
155
+ # curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
156
+
157
+ # # mask the depth
158
+ # curr_depth = curr_depth.squeeze()
159
+ # depth_mask = self.load_depth_valid_mask(curr_depth_mask_path, curr_depth)
160
+ # curr_depth[~depth_mask] = -1
161
+
162
+ # ori_h, ori_w, _ = curr_rgb.shape
163
+ # # create camera model
164
+ # curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], ori_curr_intrinsic)
165
+
166
+ # # get crop size
167
+ # transform_paras = dict()
168
+ # rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
169
+ # images=[curr_rgb,], #+ tmpl_rgbs,
170
+ # labels=[curr_depth, ],
171
+ # intrinsics=[ori_curr_intrinsic, ], # * (len(tmpl_rgbs) + 1),
172
+ # cam_models=[curr_cam_model, ],
173
+ # transform_paras=transform_paras)
174
+ # # depth in original size and orignial metric***
175
+ # depth_out = self.clip_depth(curr_depth) * self.depth_range[1] # self.clip_depth(depths[0]) #
176
+
177
+ # filename = os.path.basename(meta_data['rgb'])
178
+ # curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
179
+
180
+ # pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
181
+ # scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
182
+ # cam_models_stacks = [
183
+ # torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
184
+ # for i in [2, 4, 8, 16, 32]
185
+ # ]
186
+ # raw_rgb = torch.from_numpy(curr_rgb)
187
+ # # rel_pose = torch.from_numpy(tmpl_annos['tmpl_pose_list'][0])
188
+
189
+ # data = dict(input=rgbs[0],
190
+ # target=depth_out,
191
+ # intrinsic=curr_intrinsic_mat,
192
+ # filename=filename,
193
+ # dataset=self.data_name,
194
+ # cam_model=cam_models_stacks,
195
+ # pad=pad,
196
+ # scale=scale_ratio,
197
+ # raw_rgb=raw_rgb,
198
+ # sample_id=idx,
199
+ # data_path=meta_data['rgb'],
200
+ # )
201
+ # return data
202
+
203
+
204
+ def load_batch(self, meta_data, data_path):
205
+ curr_intrinsic = meta_data['cam_in']
206
+ # load rgb/depth
207
+ curr_rgb, curr_depth = self.load_rgb_depth(data_path['rgb_path'], data_path['depth_path'])
208
+ # get semantic labels
209
+ curr_sem = self.load_sem_label(data_path['sem_path'], curr_depth)
210
+ # create camera model
211
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], curr_intrinsic)
212
+ # get normal labels
213
+
214
+ try:
215
+ curr_normal = self.load_norm_label(data_path['normal_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1], depth=curr_depth, K=curr_intrinsic) # !!! this is diff of BaseDataset
216
+ except:
217
+ curr_normal = np.zeros_like(curr_rgb)
218
+ # get depth mask
219
+ depth_mask = self.load_depth_valid_mask(data_path['depth_mask_path'])
220
+ curr_depth[~depth_mask] = -1
221
+ data_batch = dict(
222
+ curr_rgb = curr_rgb,
223
+ curr_depth = curr_depth,
224
+ curr_sem = curr_sem,
225
+ curr_normal = curr_normal,
226
+ curr_cam_model=curr_cam_model,
227
+ )
228
+ return data_batch
229
+
230
+
231
+ def load_norm_label(self, norm_path, H, W, depth, K):
232
+ normal = np.load(norm_path)
233
+ normal[:,:,1:] *= -1
234
+ normal = self.align_normal(normal, depth, K, H, W)
235
+
236
+ return normal
237
+
238
+
239
+ def process_depth(self, depth, rgb):
240
+ depth[depth>150] = 0
241
+ depth[depth<0.1] = 0
242
+ depth /= self.metric_scale
243
+ return depth
244
+
245
+ def align_normal(self, normal, depth, K, H, W):
246
+ # inv K
247
+ K = np.array([[K[0], 0 ,K[2]],
248
+ [0, K[1], K[3]],
249
+ [0, 0, 1]])
250
+ inv_K = np.linalg.inv(K)
251
+ # reprojection depth to camera points
252
+ if H == 768 and W == 1024:
253
+ xy = self.xy
254
+ else:
255
+ print('img size no-equal 768x1024')
256
+ xy = creat_uv_mesh(H, W)
257
+ points = np.matmul(inv_K[:3, :3], xy).reshape(3, H, W)
258
+ points = depth * points
259
+ points = points.transpose((1,2,0))
260
+
261
+ # align normal
262
+ orient_mask = np.sum(normal * points, axis=2) > 0
263
+ normal[orient_mask] *= -1
264
+
265
+ return normal
266
+
267
+
268
+ if __name__ == '__main__':
269
+ from mmcv.utils import Config
270
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
271
+ dataset_i = DIODEDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
272
+ print(dataset_i)
273
+
external/Metric3D/training/mono/datasets/drivingstereo_dataset.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class DrivingStereoDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(DrivingStereoDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+
23
+ def process_depth(self, depth, rgb):
24
+ depth[depth>65500] = 0
25
+ depth /= self.metric_scale
26
+ return depth
27
+
28
+
29
+
30
+ if __name__ == '__main__':
31
+ from mmcv.utils import Config
32
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
33
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
34
+ print(dataset_i)
35
+
external/Metric3D/training/mono/datasets/dsec_dataset.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class DSECDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(DSECDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+
23
+ def process_depth(self, depth, rgb):
24
+ depth[depth>65500] = 0
25
+ depth /= self.metric_scale
26
+ return depth
27
+
28
+
29
+
30
+ if __name__ == '__main__':
31
+ from mmcv.utils import Config
32
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
33
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
34
+ print(dataset_i)
35
+
external/Metric3D/training/mono/datasets/fisheye_dataset.py ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class FisheyeDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(FisheyeDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ def load_data(self, path: str, is_rgb_img: bool=False):
22
+ if not os.path.exists(path):
23
+ self.logger.info(f'>>>>{path} does not exist.')
24
+ # raise RuntimeError(f'{path} does not exist.')
25
+
26
+ data_type = os.path.splitext(path)[-1]
27
+ if data_type in self.img_file_type:
28
+ if is_rgb_img:
29
+ data = cv2.imread(path)
30
+ else:
31
+ data = cv2.imread(path, -1)
32
+ data[data>65500] = 0
33
+ data &= 0x7FFF
34
+
35
+ elif data_type in self.np_file_type:
36
+ data = np.load(path)
37
+ else:
38
+ raise RuntimeError(f'{data_type} is not supported in current version.')
39
+
40
+ return data.squeeze()
41
+
42
+ def load_batch(self, meta_data, data_path):
43
+ curr_intrinsic = meta_data['cam_in']
44
+ # load rgb/depth
45
+ curr_rgb, curr_depth = self.load_rgb_depth(data_path['rgb_path'], data_path['depth_path'])
46
+ # get semantic labels
47
+ curr_sem = self.load_sem_label(data_path['sem_path'], curr_depth)
48
+ # create camera model
49
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], curr_intrinsic)
50
+ # get normal labels
51
+ curr_normal = self.load_norm_label(data_path['normal_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1])
52
+ # get depth mask
53
+ depth_mask = self.load_depth_valid_mask(data_path['depth_mask_path'])[:, :, :]
54
+
55
+ # with masks from andy
56
+ curr_depth[~(depth_mask[:, :, 0])] = -1
57
+ curr_rgb[~(depth_mask[:, :, :])] = 0
58
+
59
+ # get stereo depth
60
+ curr_stereo_depth = self.load_stereo_depth_label(data_path['disp_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1])
61
+
62
+ data_batch = dict(
63
+ curr_rgb = curr_rgb,
64
+ curr_depth = curr_depth,
65
+ curr_sem = curr_sem,
66
+ curr_normal = curr_normal,
67
+ curr_cam_model=curr_cam_model,
68
+ curr_stereo_depth=curr_stereo_depth,
69
+ )
70
+ return data_batch
71
+
72
+
73
+ def process_depth(self, depth, rgb):
74
+
75
+ depth /= self.metric_scale
76
+ return depth
external/Metric3D/training/mono/datasets/hm3d_dataset.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from PIL import Image
9
+ from torch.utils.data import Dataset
10
+ import random
11
+ from .__base_dataset__ import BaseDataset
12
+
13
+
14
+ class HM3DDataset(BaseDataset):
15
+ def __init__(self, cfg, phase, **kwargs):
16
+ super(HM3DDataset, self).__init__(
17
+ cfg=cfg,
18
+ phase=phase,
19
+ **kwargs)
20
+ self.metric_scale = cfg.metric_scale
21
+ #self.cap_range = self.depth_range # in meter
22
+
23
+ def load_norm_label(self, norm_path, H, W):
24
+ with open(norm_path, 'rb') as f:
25
+ normal = Image.open(f)
26
+ normal = np.array(normal.convert(normal.mode), dtype=np.uint8)
27
+ invalid_mask = np.all(normal == 128, axis=2)
28
+ normal = normal.astype(np.float64) / 255.0 * 2 - 1
29
+ normal[invalid_mask, :] = 0
30
+ return normal
31
+
32
+ def process_depth(self, depth: np.array, rgb: np.array) -> np.array:
33
+ depth[depth>60000] = 0
34
+ depth = depth / self.metric_scale
35
+ return depth
external/Metric3D/training/mono/datasets/hypersim_dataset.py ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from PIL import Image
9
+ from torch.utils.data import Dataset
10
+ import random
11
+ from .__base_dataset__ import BaseDataset
12
+ import h5py
13
+
14
+ def creat_uv_mesh(H, W):
15
+ y, x = np.meshgrid(np.arange(0, H, dtype=np.float), np.arange(0, W, dtype=np.float), indexing='ij')
16
+ meshgrid = np.stack((x,y))
17
+ ones = np.ones((1,H*W), dtype=np.float)
18
+ xy = meshgrid.reshape(2, -1)
19
+ return np.concatenate([xy, ones], axis=0)
20
+
21
+ class HypersimDataset(BaseDataset):
22
+ def __init__(self, cfg, phase, **kwargs):
23
+ super(HypersimDataset, self).__init__(
24
+ cfg=cfg,
25
+ phase=phase,
26
+ **kwargs)
27
+ self.metric_scale = cfg.metric_scale
28
+ #self.cap_range = self.depth_range # in meter
29
+ # init uv
30
+
31
+ # meshgrid for depth reprojection
32
+ self.xy = creat_uv_mesh(768, 1024)
33
+
34
+ def load_batch(self, meta_data, data_path):
35
+ curr_intrinsic = meta_data['cam_in']
36
+ # load rgb/depth
37
+ curr_rgb, curr_depth = self.load_rgb_depth(data_path['rgb_path'], data_path['depth_path'])
38
+ # get semantic labels
39
+ curr_sem = self.load_sem_label(data_path['sem_path'], curr_depth)
40
+ # create camera model
41
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], curr_intrinsic)
42
+ # get normal labels
43
+ curr_normal = self.load_norm_label(data_path['normal_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1], depth=curr_depth, K=curr_intrinsic) # !!! this is diff of BaseDataset
44
+ # get depth mask
45
+ depth_mask = self.load_depth_valid_mask(data_path['depth_mask_path'])
46
+ curr_depth[~depth_mask] = -1
47
+ data_batch = dict(
48
+ curr_rgb = curr_rgb,
49
+ curr_depth = curr_depth,
50
+ curr_sem = curr_sem,
51
+ curr_normal = curr_normal,
52
+ curr_cam_model=curr_cam_model,
53
+ )
54
+ return data_batch
55
+
56
+ def load_data_path(self, meta_data):
57
+ # 'rgbs': {'rgb_color': 'Hypersim/data/ai_001_001/images/scene_cam_00_final_preview/frame.0008.color.jpg',
58
+ # 'rgb_gamma': 'Hypersim/data/ai_001_001/images/scene_cam_00_final_preview/frame.0008.gamma.jpg',
59
+ # 'rgb_tonemap': 'Hypersim/data/ai_001_001/images/scene_cam_00_final_preview/frame.0008.tonemap.jpg',
60
+ # 'rgb_raw': 'Hypersim/data/ai_001_001/images/scene_cam_00_final_hdf5/frame.0008.color.hdf5'}
61
+ meta_data['rgb'] = meta_data['rgbs']['rgb_color'] # this is diff of BaseDataset
62
+ curr_rgb_path = os.path.join(self.data_root, meta_data['rgb'])
63
+ curr_depth_path = os.path.join(self.depth_root, meta_data['depth'])
64
+ curr_sem_path = os.path.join(self.sem_root, meta_data['sem']) \
65
+ if self.sem_root is not None and ('sem' in meta_data) and (meta_data['sem'] is not None) \
66
+ else None
67
+ curr_norm_path = os.path.join(self.norm_root, meta_data['normal']) \
68
+ if ('normal' in meta_data) and (meta_data['normal'] is not None) and (self.norm_root is not None) \
69
+ else None
70
+ curr_depth_mask_path = os.path.join(self.depth_mask_root, meta_data['depth_mask']) \
71
+ if self.depth_mask_root is not None and ('depth_mask' in meta_data) and (meta_data['depth_mask'] is not None) \
72
+ else None
73
+
74
+ data_path=dict(
75
+ rgb_path=curr_rgb_path,
76
+ depth_path=curr_depth_path,
77
+ sem_path=curr_sem_path,
78
+ normal_path=curr_norm_path,
79
+ depth_mask_path=curr_depth_mask_path,
80
+ )
81
+ return data_path
82
+
83
+ def load_rgb_depth(self, rgb_path: str, depth_path: str):
84
+ """
85
+ Load the rgb and depth map with the paths.
86
+ """
87
+ rgb = self.load_data(rgb_path, is_rgb_img=True)
88
+ if rgb is None:
89
+ self.logger.info(f'>>>>{rgb_path} has errors.')
90
+
91
+ # depth = self.load_data(depth_path)
92
+ with h5py.File(depth_path, "r") as f: depth = f["dataset"][:]
93
+ np.nan_to_num(depth, copy=False, nan=0) # fill nan in gt
94
+ if depth is None:
95
+ self.logger.info(f'{depth_path} has errors.')
96
+
97
+ depth = depth.astype(np.float)
98
+
99
+ depth = self.process_depth(depth, rgb)
100
+ return rgb, depth
101
+
102
+
103
+ def load_norm_label(self, norm_path, H, W, depth, K):
104
+ with h5py.File(norm_path, "r") as f:
105
+ normal = f["dataset"][:]
106
+ np.nan_to_num(normal, copy=False, nan=0)
107
+ normal[:,:,1:] *= -1
108
+ normal = normal.astype(np.float)
109
+
110
+ return self.align_normal(normal, depth, K, H, W)
111
+
112
+ def process_depth(self, depth: np.array, rgb: np.array) -> np.array:
113
+ depth[depth>60000] = 0
114
+ depth = depth / self.metric_scale
115
+ return depth
116
+
117
+ def align_normal(self, normal, depth, K, H, W):
118
+ '''
119
+ Orientation of surface normals in hypersim is not always consistent
120
+ see https://github.com/apple/ml-hypersim/issues/26
121
+ '''
122
+ # inv K
123
+ K = np.array([[K[0], 0 ,K[2]],
124
+ [0, K[1], K[3]],
125
+ [0, 0, 1]])
126
+ inv_K = np.linalg.inv(K)
127
+ # reprojection depth to camera points
128
+ if H == 768 and W == 1024:
129
+ xy = self.xy
130
+ else:
131
+ print('img size no-equal 768x1024')
132
+ xy = creat_uv_mesh(H, W)
133
+ points = np.matmul(inv_K[:3, :3], xy).reshape(3, H, W)
134
+ points = depth * points
135
+ points = points.transpose((1,2,0))
136
+
137
+ # align normal
138
+ orient_mask = np.sum(normal * points, axis=2) > 0
139
+ normal[orient_mask] *= -1
140
+
141
+ return normal
external/Metric3D/training/mono/datasets/ibims_dataset.py ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class IBIMSDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(IBIMSDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ self.avg = torch.nn.AvgPool2d(kernel_size=7, stride=1, ceil_mode=False, count_include_pad=True, divisor_override=None)
22
+ self.unfold = torch.nn.Unfold(kernel_size=7, dilation=1, padding=0, stride=1)
23
+ self.pad = torch.nn.ZeroPad2d(3)
24
+
25
+
26
+ def process_depth(self, depth, rgb):
27
+ depth[depth>50000] = 0
28
+ depth /= self.metric_scale
29
+ return depth
30
+
31
+ def load_batch(self, meta_data, data_path):
32
+ curr_intrinsic = meta_data['cam_in']
33
+ # load rgb/depth
34
+ curr_rgb, curr_depth = self.load_rgb_depth(data_path['rgb_path'], data_path['depth_path'])
35
+ # get semantic labels
36
+ curr_sem = self.load_sem_label(data_path['sem_path'], curr_depth)
37
+ # create camera model
38
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], curr_intrinsic)
39
+ # get normal labels
40
+ curr_normal = self.load_norm_label(data_path['normal_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1], depth=curr_depth, K=curr_intrinsic) # !!! this is diff of BaseDataset
41
+ # get depth mask
42
+ depth_mask = self.load_depth_valid_mask(data_path['depth_mask_path'])
43
+ curr_depth[~depth_mask] = -1
44
+ data_batch = dict(
45
+ curr_rgb = curr_rgb,
46
+ curr_depth = curr_depth,
47
+ curr_sem = curr_sem,
48
+ curr_normal = curr_normal,
49
+ curr_cam_model=curr_cam_model,
50
+ )
51
+ return data_batch
52
+
53
+ def load_norm_label(self, norm_path, H, W, depth, K):
54
+ depth = torch.from_numpy(depth).squeeze()
55
+ K = torch.Tensor([[K[0], 0 ,K[2]],
56
+ [0, K[1], K[3]],
57
+ [0, 0, 1]])
58
+ K_inv = K.inverse()
59
+
60
+ y, x = torch.meshgrid([torch.arange(0, 480, dtype=torch.float32),
61
+ torch.arange(0, 640, dtype=torch.float32)], indexing='ij')
62
+ x = x.reshape(1, 480*640)
63
+ y = y.reshape(1, 480*640)
64
+ ones = torch.ones_like(x)
65
+ coord_2d = torch.cat((x, y, ones), dim=0)
66
+
67
+ coord_3d = torch.matmul(K_inv, coord_2d).view(3, 480, 640)
68
+ coord_3d = (coord_3d * depth[None, :])[None, :]
69
+ coord_3d_mean = self.avg(coord_3d)
70
+
71
+ uf_coord_3d = self.unfold(coord_3d.permute(1, 0, 2, 3))
72
+ coord_3d_decenter = uf_coord_3d - coord_3d_mean.view(3, 1, (480-6)*(640-6))
73
+ coord_3d_decenter = coord_3d_decenter.permute(2, 0, 1)
74
+ cov = torch.bmm(coord_3d_decenter, coord_3d_decenter.permute(0, 2, 1))
75
+
76
+ eig = torch.linalg.eigh(cov)
77
+ #svd = torch.linalg.svd(coord_3d_decenter)
78
+ normal = (eig[1])[:, :, 0].float()
79
+ #normal = (svd[1])[:, 2, :]
80
+ normal = self.pad(normal.permute(1, 0).view(1, 3, (480-6), (640-6)))
81
+
82
+ orient_mask = (torch.sum(normal * coord_3d, axis=1) < 0).unsqueeze(1)
83
+ normal = normal * orient_mask - normal * (~orient_mask)
84
+ gt_normal = normal.squeeze().permute(1, 2, 0).numpy()
85
+ return gt_normal
86
+
87
+ if __name__ == '__main__':
88
+ from mmcv.utils import Config
89
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
90
+ dataset_i = IBIMSDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
91
+ print(dataset_i)
92
+
external/Metric3D/training/mono/datasets/kitti_dataset.py ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class KITTIDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(KITTIDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ def get_data_for_trainval(self, idx: int):
22
+ anno = self.annotations['files'][idx]
23
+ meta_data = self.load_meta_data(anno)
24
+
25
+ data_path = self.load_data_path(meta_data)
26
+ data_batch = self.load_batch(meta_data, data_path)
27
+ # if data_path['sem_path'] is not None:
28
+ # print(self.data_name)
29
+
30
+ curr_rgb, curr_depth, curr_normal, curr_sem, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_sem'], data_batch['curr_cam_model']
31
+ #curr_stereo_depth = data_batch['curr_stereo_depth']
32
+
33
+ th = 352 # target size for bottom cropping, a common practice for kitti training
34
+ tw = 1216
35
+
36
+ ch = curr_rgb.shape[0]
37
+ cw = curr_rgb.shape[1]
38
+
39
+ h_start = ch - th
40
+ w_start = (cw - tw) // 2
41
+ w_end = w_start + tw
42
+
43
+ curr_intrinsic = meta_data['cam_in']
44
+
45
+ curr_rgb = curr_rgb[h_start:, w_start:w_end, :]
46
+ curr_depth = curr_depth[h_start:, w_start:w_end]
47
+
48
+ curr_normal = curr_normal[h_start:, w_start:w_end, :]
49
+ curr_sem = curr_sem[h_start:, w_start:w_end]
50
+
51
+ curr_intrinsic[2] = curr_intrinsic[2] - w_start # cw
52
+ curr_intrinsic[3] = curr_intrinsic[3] - h_start # ch
53
+
54
+ # A patch for stereo depth dataloader (no need to modify specific datasets)
55
+ if 'curr_stereo_depth' in data_batch.keys():
56
+ curr_stereo_depth = data_batch['curr_stereo_depth']
57
+ else:
58
+ curr_stereo_depth = self.load_stereo_depth_label(None, H=curr_rgb.shape[0], W=curr_rgb.shape[1])
59
+
60
+
61
+ # data augmentation
62
+ transform_paras = dict(random_crop_size = self.random_crop_size) # dict()
63
+ assert curr_rgb.shape[:2] == curr_depth.shape == curr_normal.shape[:2] == curr_sem.shape
64
+ rgbs, depths, intrinsics, cam_models, normals, other_labels, transform_paras = self.img_transforms(
65
+ images=[curr_rgb, ],
66
+ labels=[curr_depth, ],
67
+ intrinsics=[curr_intrinsic,],
68
+ cam_models=[curr_cam_model, ],
69
+ normals = [curr_normal, ],
70
+ other_labels=[curr_sem, curr_stereo_depth],
71
+ transform_paras=transform_paras)
72
+ # process sky masks
73
+ sem_mask = other_labels[0].int()
74
+ # clip depth map
75
+ depth_out = self.normalize_depth(depths[0])
76
+ # set the depth of sky region to the invalid
77
+ depth_out[sem_mask==142] = -1 # self.depth_normalize[1] - 1e-6
78
+ # get inverse depth
79
+ inv_depth = self.depth2invdepth(depth_out, sem_mask==142)
80
+ filename = os.path.basename(meta_data['rgb'])[:-4] + '.jpg'
81
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
82
+ cam_models_stacks = [
83
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
84
+ for i in [2, 4, 8, 16, 32]
85
+ ]
86
+
87
+ # stereo_depth
88
+ stereo_depth_pre_trans = other_labels[1] * (other_labels[1] > 0.3) * (other_labels[1] < 200)
89
+ stereo_depth = stereo_depth_pre_trans * transform_paras['label_scale_factor']
90
+ stereo_depth = self.normalize_depth(stereo_depth)
91
+
92
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
93
+ data = dict(input=rgbs[0],
94
+ target=depth_out,
95
+ intrinsic=curr_intrinsic_mat,
96
+ filename=filename,
97
+ dataset=self.data_name,
98
+ cam_model=cam_models_stacks,
99
+ pad=torch.tensor(pad),
100
+ data_type=[self.data_type, ],
101
+ sem_mask=sem_mask.int(),
102
+ stereo_depth= stereo_depth,
103
+ normal=normals[0],
104
+ inv_depth=inv_depth,
105
+ scale=transform_paras['label_scale_factor'])
106
+ return data
107
+
108
+
109
+ def get_data_for_test(self, idx: int):
110
+ anno = self.annotations['files'][idx]
111
+ meta_data = self.load_meta_data(anno)
112
+ curr_rgb_path = os.path.join(self.data_root, meta_data['rgb'])
113
+ curr_depth_path = os.path.join(self.depth_root, meta_data['depth'])
114
+ # load data
115
+ ori_curr_intrinsic = meta_data['cam_in']
116
+ curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
117
+ # crop rgb/depth
118
+ curr_rgb = curr_rgb[:, 43: 1197, :]
119
+ curr_depth = curr_depth[:, 43: 1197]
120
+
121
+ ori_h, ori_w, _ = curr_rgb.shape
122
+ # create camera model
123
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], ori_curr_intrinsic)
124
+ # load tmpl rgb info
125
+ # tmpl_annos = self.load_tmpl_image_pose(curr_rgb, meta_data)
126
+ # tmpl_rgbs = tmpl_annos['tmpl_rgb_list'] # list of reference rgbs
127
+
128
+ # get crop size
129
+ transform_paras = dict()
130
+ rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
131
+ images=[curr_rgb,], #+ tmpl_rgbs,
132
+ labels=[curr_depth, ],
133
+ intrinsics=[ori_curr_intrinsic, ], # * (len(tmpl_rgbs) + 1),
134
+ cam_models=[curr_cam_model, ],
135
+ transform_paras=transform_paras)
136
+
137
+ # depth in original size and orignial metric***
138
+ depth_out = self.clip_depth(curr_depth) * self.depth_range[1] # self.clip_depth(depths[0]) #
139
+
140
+ filename = os.path.basename(meta_data['rgb'])
141
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
142
+
143
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
144
+ scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
145
+ cam_models_stacks = [
146
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
147
+ for i in [2, 4, 8, 16, 32]
148
+ ]
149
+ raw_rgb = torch.from_numpy(curr_rgb)
150
+ # rel_pose = torch.from_numpy(tmpl_annos['tmpl_pose_list'][0])
151
+
152
+ data = dict(input=rgbs[0],
153
+ target=depth_out,
154
+ intrinsic=curr_intrinsic_mat,
155
+ filename=filename,
156
+ dataset=self.data_name,
157
+ cam_model=cam_models_stacks,
158
+ # ref_input=rgbs[1:],
159
+ # tmpl_flg=tmpl_annos['w_tmpl'],
160
+ pad=pad,
161
+ scale=scale_ratio,
162
+ raw_rgb=raw_rgb,
163
+ normal = np.zeros_like(curr_rgb.transpose((2,0,1))),
164
+ # rel_pose=rel_pose,
165
+ )
166
+ return data
167
+
168
+ def process_depth(self, depth, rgb):
169
+ new_depth = np.zeros_like(depth)
170
+ H, W = depth.shape
171
+ crop_h_up = int(0.3324324 * H)
172
+ crop_h_down = int(0.91351351 * H)
173
+ crop_w_left = int(0.0359477 * W)
174
+ crop_w_right = int(0.96405229 * W)
175
+
176
+ new_depth[crop_h_up:crop_h_down, crop_w_left: crop_w_right] = depth[crop_h_up:crop_h_down, crop_w_left: crop_w_right]
177
+ new_depth[new_depth>65500] = 0
178
+ new_depth /= self.metric_scale
179
+ #print('image size', new_depth.shape, crop_h_up, crop_h_down, crop_w_left, crop_w_right)
180
+ #self.logger.info('image size, {new_depth.shape}, {crop_h_up}, {crop_h_down}, {crop_w_left}, {crop_w_right}')
181
+ return new_depth
182
+
183
+
184
+
185
+ if __name__ == '__main__':
186
+ from mmcv.utils import Config
187
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
188
+ dataset_i = KITTIDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
189
+ print(dataset_i)
190
+
external/Metric3D/training/mono/datasets/lyft_dataset.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+ import pickle
12
+
13
+ class LyftDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(LyftDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+ def process_depth(self, depth, rgb):
23
+ depth[depth>65500] = 0
24
+ depth /= self.metric_scale
25
+ return depth
26
+
27
+
28
+
29
+ if __name__ == '__main__':
30
+ from mmcv.utils import Config
31
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
32
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
33
+ print(dataset_i)
34
+
external/Metric3D/training/mono/datasets/matterport3d_dataset.py ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from PIL import Image
9
+ from torch.utils.data import Dataset
10
+ import random
11
+ from .__base_dataset__ import BaseDataset
12
+
13
+
14
+ class Matterport3DDataset(BaseDataset):
15
+ def __init__(self, cfg, phase, **kwargs):
16
+ super(Matterport3DDataset, self).__init__(
17
+ cfg=cfg,
18
+ phase=phase,
19
+ **kwargs)
20
+ self.metric_scale = cfg.metric_scale
21
+ #self.cap_range = self.depth_range # in meter
22
+
23
+ def load_norm_label(self, norm_path, H, W):
24
+ normal_x = cv2.imread(norm_path['x'], cv2.IMREAD_ANYCOLOR | cv2.IMREAD_ANYDEPTH)
25
+ normal_y = cv2.imread(norm_path['y'], cv2.IMREAD_ANYCOLOR | cv2.IMREAD_ANYDEPTH)
26
+ normal_z = cv2.imread(norm_path['z'], cv2.IMREAD_ANYCOLOR | cv2.IMREAD_ANYDEPTH)
27
+ raw_normal = np.array([normal_x, normal_y, normal_z])
28
+ invalid_mask = np.all(raw_normal == 0, axis=0)
29
+
30
+ ego_normal = raw_normal.astype(np.float64) / 32768.0 - 1
31
+ ego2cam = np.array([[1,0,0],
32
+ [0,-1,0],
33
+ [0,0,-1]])
34
+ normal = (ego2cam @ ego_normal.reshape(3,-1)).reshape(ego_normal.shape)
35
+ normal[:,invalid_mask] = 0
36
+ normal = normal.transpose((1,2,0))
37
+ if normal.shape[0] != H or normal.shape[1] != W:
38
+ normal = cv2.resize(normal, [W,H], interpolation=cv2.INTER_NEAREST)
39
+ return normal
40
+
41
+ def process_depth(self, depth: np.array, rgb: np.array) -> np.array:
42
+ depth[depth>65500] = 0
43
+ depth = depth / self.metric_scale
44
+ return depth
external/Metric3D/training/mono/datasets/nuscenes_dataset.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+ import pickle
12
+
13
+ class NuScenesDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(NuScenesDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+ def process_depth(self, depth, rgb):
23
+ depth[depth>65500] = 0
24
+ depth /= self.metric_scale
25
+ return depth
26
+
27
+
28
+
29
+ if __name__ == '__main__':
30
+ from mmcv.utils import Config
31
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
32
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
33
+ print(dataset_i)
34
+
external/Metric3D/training/mono/datasets/nyu_dataset.py ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class NYUDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(NYUDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ def get_data_for_trainval(self, idx: int):
22
+ anno = self.annotations['files'][idx]
23
+ meta_data = self.load_meta_data(anno)
24
+
25
+ data_path = self.load_data_path(meta_data)
26
+ data_batch = self.load_batch(meta_data, data_path)
27
+ # if data_path['sem_path'] is not None:
28
+ # print(self.data_name)
29
+
30
+ curr_rgb, curr_depth, curr_normal, curr_sem, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_sem'], data_batch['curr_cam_model']
31
+ #curr_stereo_depth = data_batch['curr_stereo_depth']
32
+ new_rgb = np.zeros_like(curr_rgb)
33
+ new_rgb[6:-6, 6:-6, :] = curr_rgb[6:-6, 6:-6, :]
34
+ curr_rgb = new_rgb
35
+
36
+ # A patch for stereo depth dataloader (no need to modify specific datasets)
37
+ if 'curr_stereo_depth' in data_batch.keys():
38
+ curr_stereo_depth = data_batch['curr_stereo_depth']
39
+ else:
40
+ curr_stereo_depth = self.load_stereo_depth_label(None, H=curr_rgb.shape[0], W=curr_rgb.shape[1])
41
+
42
+ curr_intrinsic = meta_data['cam_in']
43
+ # data augmentation
44
+ transform_paras = dict(random_crop_size = self.random_crop_size) # dict()
45
+ assert curr_rgb.shape[:2] == curr_depth.shape == curr_normal.shape[:2] == curr_sem.shape
46
+ rgbs, depths, intrinsics, cam_models, normals, other_labels, transform_paras = self.img_transforms(
47
+ images=[curr_rgb, ],
48
+ labels=[curr_depth, ],
49
+ intrinsics=[curr_intrinsic,],
50
+ cam_models=[curr_cam_model, ],
51
+ normals = [curr_normal, ],
52
+ other_labels=[curr_sem, curr_stereo_depth],
53
+ transform_paras=transform_paras)
54
+ # process sky masks
55
+ sem_mask = other_labels[0].int()
56
+ # clip depth map
57
+ depth_out = self.normalize_depth(depths[0])
58
+ # set the depth of sky region to the invalid
59
+ depth_out[sem_mask==142] = -1 # self.depth_normalize[1] - 1e-6
60
+ # get inverse depth
61
+ inv_depth = self.depth2invdepth(depth_out, sem_mask==142)
62
+ filename = os.path.basename(meta_data['rgb'])[:-4] + '.jpg'
63
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
64
+ cam_models_stacks = [
65
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
66
+ for i in [2, 4, 8, 16, 32]
67
+ ]
68
+
69
+ # stereo_depth
70
+ stereo_depth_pre_trans = other_labels[1] * (other_labels[1] > 0.3) * (other_labels[1] < 200)
71
+ stereo_depth = stereo_depth_pre_trans * transform_paras['label_scale_factor']
72
+ stereo_depth = self.normalize_depth(stereo_depth)
73
+
74
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
75
+ data = dict(input=rgbs[0],
76
+ target=depth_out,
77
+ intrinsic=curr_intrinsic_mat,
78
+ filename=filename,
79
+ dataset=self.data_name,
80
+ cam_model=cam_models_stacks,
81
+ pad=torch.tensor(pad),
82
+ data_type=[self.data_type, ],
83
+ sem_mask=sem_mask.int(),
84
+ stereo_depth= stereo_depth,
85
+ normal=normals[0],
86
+ inv_depth=inv_depth,
87
+ scale=transform_paras['label_scale_factor'])
88
+ return data
89
+
90
+ def get_data_for_test(self, idx: int):
91
+ anno = self.annotations['files'][idx]
92
+ meta_data = self.load_meta_data(anno)
93
+ curr_rgb_path = os.path.join(self.data_root, meta_data['rgb'])
94
+ curr_depth_path = os.path.join(self.depth_root, meta_data['depth'])
95
+ # load data
96
+ ori_curr_intrinsic = meta_data['cam_in']
97
+ curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
98
+ # crop rgb/depth
99
+ new_rgb = np.zeros_like(curr_rgb)
100
+ new_rgb[6:-6, 6:-6, :] = curr_rgb[6:-6, 6:-6, :]
101
+ curr_rgb = new_rgb
102
+
103
+ ori_h, ori_w, _ = curr_rgb.shape
104
+ # create camera model
105
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], ori_curr_intrinsic)
106
+
107
+ if 'normal' in meta_data.keys():
108
+ normal_path = os.path.join(self.data_root, meta_data['normal'])
109
+ else:
110
+ normal_path = None
111
+
112
+ curr_normal = self.load_norm_label(normal_path, H=curr_rgb.shape[0], W=curr_rgb.shape[1])
113
+ # load tmpl rgb info
114
+ # tmpl_annos = self.load_tmpl_image_pose(curr_rgb, meta_data)
115
+ # tmpl_rgbs = tmpl_annos['tmpl_rgb_list'] # list of reference rgbs
116
+
117
+ # get crop size
118
+ transform_paras = dict()
119
+ rgbs, depths, intrinsics, cam_models, normals, other_labels, transform_paras = self.img_transforms(
120
+ images=[curr_rgb,], #+ tmpl_rgbs,
121
+ labels=[curr_depth, ],
122
+ intrinsics=[ori_curr_intrinsic, ], # * (len(tmpl_rgbs) + 1),
123
+ cam_models=[curr_cam_model, ],
124
+ normals = [curr_normal, ],
125
+ transform_paras=transform_paras)
126
+ # depth in original size and orignial metric***
127
+ depth_out = self.clip_depth(curr_depth) * self.depth_range[1] # self.clip_depth(depths[0]) #
128
+
129
+ filename = os.path.basename(meta_data['rgb'])
130
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
131
+
132
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
133
+ scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
134
+ cam_models_stacks = [
135
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
136
+ for i in [2, 4, 8, 16, 32]
137
+ ]
138
+ raw_rgb = torch.from_numpy(curr_rgb)
139
+ # rel_pose = torch.from_numpy(tmpl_annos['tmpl_pose_list'][0])
140
+ curr_normal = torch.from_numpy(curr_normal.transpose((2,0,1)))
141
+
142
+ data = dict(input=rgbs[0],
143
+ target=depth_out,
144
+ intrinsic=curr_intrinsic_mat,
145
+ filename=filename,
146
+ dataset=self.data_name,
147
+ cam_model=cam_models_stacks,
148
+ # ref_input=rgbs[1:],
149
+ # tmpl_flg=tmpl_annos['w_tmpl'],
150
+ pad=pad,
151
+ scale=scale_ratio,
152
+ raw_rgb=raw_rgb,
153
+ # rel_pose=rel_pose,
154
+ normal=curr_normal
155
+ #normal=np.zeros_like(curr_rgb.transpose((2,0,1))),
156
+ )
157
+ return data
158
+
159
+ def load_norm_label(self, norm_path, H, W):
160
+ if norm_path is None:
161
+ norm_gt = np.zeros((H, W, 3)).astype(np.float32)
162
+ else:
163
+ norm_gt = cv2.imread(norm_path)
164
+
165
+ norm_gt = np.array(norm_gt).astype(np.uint8)
166
+ norm_valid_mask = np.logical_not(
167
+ np.logical_and(
168
+ np.logical_and(
169
+ norm_gt[:, :, 0] == 0, norm_gt[:, :, 1] == 0),
170
+ norm_gt[:, :, 2] == 0))
171
+ norm_valid_mask = norm_valid_mask[:, :, np.newaxis]
172
+
173
+ norm_gt = ((norm_gt.astype(np.float32) / 255.0) * 2.0) - 1.0
174
+ norm_gt = norm_gt * norm_valid_mask * -1
175
+
176
+ return norm_gt
177
+
178
+ def process_depth(self, depth, rgb):
179
+ # eign crop
180
+ new_depth = np.zeros_like(depth)
181
+ new_depth[45:471, 41:601] = depth[45:471, 41:601]
182
+
183
+ new_depth[new_depth>65500] = 0
184
+ new_depth /= self.metric_scale
185
+ return new_depth
186
+
187
+
188
+
189
+
190
+ if __name__ == '__main__':
191
+ from mmcv.utils import Config
192
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
193
+ dataset_i = NYUDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
194
+ print(dataset_i)
195
+
external/Metric3D/training/mono/datasets/pandaset_dataset.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class PandasetDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(PandasetDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+ def process_depth(self, depth, rgb):
23
+ depth[depth>65500] = 0
24
+ depth /= self.metric_scale
25
+ # depth[(depth>self.cap_range[1]) | (depth<self.cap_range[0])] = -1
26
+ # depth /= self.cap_range[1]
27
+ return depth
28
+
29
+
30
+
31
+ if __name__ == '__main__':
32
+ from mmcv.utils import Config
33
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
34
+ dataset_i = PandasetDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
35
+ print(dataset_i)
36
+
external/Metric3D/training/mono/datasets/replica_dataset.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from PIL import Image
9
+ from torch.utils.data import Dataset
10
+ import random
11
+ from .__base_dataset__ import BaseDataset
12
+
13
+
14
+ class ReplicaDataset(BaseDataset):
15
+ def __init__(self, cfg, phase, **kwargs):
16
+ super(ReplicaDataset, self).__init__(
17
+ cfg=cfg,
18
+ phase=phase,
19
+ **kwargs)
20
+ self.metric_scale = cfg.metric_scale
21
+ #self.cap_range = self.depth_range # in meter
22
+
23
+ def load_norm_label(self, norm_path, H, W):
24
+ with open(norm_path, 'rb') as f:
25
+ normal = Image.open(f)
26
+ normal = np.array(normal.convert(normal.mode), dtype=np.uint8)
27
+ invalid_mask = np.all(normal == 128, axis=2)
28
+ normal = normal.astype(np.float64) / 255.0 * 2 - 1
29
+ normal[invalid_mask, :] = 0
30
+ return normal
31
+
32
+ def process_depth(self, depth: np.array, rgb: np.array) -> np.array:
33
+ depth[depth>60000] = 0
34
+ depth = depth / self.metric_scale
35
+ return depth
external/Metric3D/training/mono/datasets/scannet_dataset.py ADDED
@@ -0,0 +1,295 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class ScanNetDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(ScanNetDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+ # def get_data_for_test(self, idx):
22
+ # anno = self.annotations['files'][idx]
23
+ # curr_rgb_path = os.path.join(self.data_root, anno['rgb'])
24
+ # curr_depth_path = os.path.join(self.depth_root, anno['depth'])
25
+ # meta_data = self.load_meta_data(anno)
26
+ # ori_curr_intrinsic = meta_data['cam_in']
27
+
28
+ # curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
29
+ # # curr_rgb = cv2.resize(curr_rgb, dsize=(640, 480), interpolation=cv2.INTER_LINEAR)
30
+ # ori_h, ori_w, _ = curr_rgb.shape
31
+ # # create camera model
32
+ # curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], ori_curr_intrinsic)
33
+ # # load tmpl rgb info
34
+ # # tmpl_annos = self.load_tmpl_annos(anno, curr_rgb, meta_data)
35
+ # # tmpl_rgb = tmpl_annos['tmpl_rgb_list'] # list of reference rgbs
36
+
37
+ # transform_paras = dict()
38
+ # rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
39
+ # images=[curr_rgb, ],
40
+ # labels=[curr_depth, ],
41
+ # intrinsics=[ori_curr_intrinsic,],
42
+ # cam_models=[curr_cam_model, ],
43
+ # transform_paras=transform_paras)
44
+ # # depth in original size
45
+ # depth_out = self.clip_depth(curr_depth) * self.depth_range[1]
46
+
47
+ # filename = os.path.basename(anno['rgb'])
48
+ # curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
49
+
50
+ # pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
51
+ # scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
52
+ # cam_models_stacks = [
53
+ # torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
54
+ # for i in [2, 4, 8, 16, 32]
55
+ # ]
56
+ # raw_rgb = torch.from_numpy(curr_rgb)
57
+ # data = dict(input=rgbs[0],
58
+ # target=depth_out,
59
+ # intrinsic=curr_intrinsic_mat,
60
+ # filename=filename,
61
+ # dataset=self.data_name,
62
+ # cam_model=cam_models_stacks,
63
+ # ref_input=rgbs[1:],
64
+ # tmpl_flg=False,
65
+ # pad=pad,
66
+ # scale=scale_ratio,
67
+ # raw_rgb=raw_rgb,
68
+ # normal =np.zeros_like(curr_rgb.transpose((2,0,1))),
69
+ # )
70
+ # return data
71
+
72
+ def get_data_for_test(self, idx: int, test_mode=True):
73
+ anno = self.annotations['files'][idx]
74
+ meta_data = self.load_meta_data(anno)
75
+ data_path = self.load_data_path(meta_data)
76
+ data_batch = self.load_batch(meta_data, data_path, test_mode)
77
+ # load data
78
+ curr_rgb, curr_depth, curr_normal, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_cam_model']
79
+ ori_curr_intrinsic = meta_data['cam_in']
80
+
81
+ # get crop size
82
+ transform_paras = dict()
83
+ rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
84
+ images=[curr_rgb,], #+ tmpl_rgbs,
85
+ labels=[curr_depth, ],
86
+ intrinsics=[ori_curr_intrinsic, ], # * (len(tmpl_rgbs) + 1),
87
+ cam_models=[curr_cam_model, ],
88
+ transform_paras=transform_paras)
89
+ # depth in original size and orignial metric***
90
+ depth_out = self.clip_depth(curr_depth) * self.depth_range[1] # self.clip_depth(depths[0]) #
91
+ inv_depth = self.depth2invdepth(depth_out, np.zeros_like(depth_out, dtype=np.bool))
92
+ filename = os.path.basename(meta_data['rgb'])[:-4] + '.jpg'
93
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
94
+
95
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
96
+ scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
97
+ cam_models_stacks = [
98
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
99
+ for i in [2, 4, 8, 16, 32]
100
+ ]
101
+ raw_rgb = torch.from_numpy(curr_rgb)
102
+ curr_normal = torch.from_numpy(curr_normal.transpose((2,0,1)))
103
+
104
+
105
+ data = dict(input=rgbs[0],
106
+ target=depth_out,
107
+ intrinsic=curr_intrinsic_mat,
108
+ filename=filename,
109
+ dataset=self.data_name,
110
+ cam_model=cam_models_stacks,
111
+ pad=pad,
112
+ scale=scale_ratio,
113
+ raw_rgb=raw_rgb,
114
+ sample_id=idx,
115
+ data_path=meta_data['rgb'],
116
+ inv_depth=inv_depth,
117
+ normal=curr_normal,
118
+ )
119
+ return data
120
+
121
+ def get_data_for_trainval(self, idx: int):
122
+ anno = self.annotations['files'][idx]
123
+ meta_data = self.load_meta_data(anno)
124
+
125
+ data_path = self.load_data_path(meta_data)
126
+ data_batch = self.load_batch(meta_data, data_path, test_mode=False)
127
+
128
+ # if data_path['sem_path'] is not None:
129
+ # print(self.data_name)
130
+
131
+ curr_rgb, curr_depth, curr_normal, curr_sem, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_sem'], data_batch['curr_cam_model']
132
+ #curr_stereo_depth = data_batch['curr_stereo_depth']
133
+
134
+ # A patch for stereo depth dataloader (no need to modify specific datasets)
135
+ if 'curr_stereo_depth' in data_batch.keys():
136
+ curr_stereo_depth = data_batch['curr_stereo_depth']
137
+ else:
138
+ curr_stereo_depth = self.load_stereo_depth_label(None, H=curr_rgb.shape[0], W=curr_rgb.shape[1])
139
+
140
+ curr_intrinsic = meta_data['cam_in']
141
+ # data augmentation
142
+ transform_paras = dict(random_crop_size = self.random_crop_size) # dict()
143
+ assert curr_rgb.shape[:2] == curr_depth.shape == curr_normal.shape[:2] == curr_sem.shape
144
+ rgbs, depths, intrinsics, cam_models, normals, other_labels, transform_paras = self.img_transforms(
145
+ images=[curr_rgb, ],
146
+ labels=[curr_depth, ],
147
+ intrinsics=[curr_intrinsic,],
148
+ cam_models=[curr_cam_model, ],
149
+ normals = [curr_normal, ],
150
+ other_labels=[curr_sem, curr_stereo_depth],
151
+ transform_paras=transform_paras)
152
+ # process sky masks
153
+ sem_mask = other_labels[0].int()
154
+ # clip depth map
155
+ depth_out = self.normalize_depth(depths[0])
156
+ # set the depth of sky region to the invalid
157
+ depth_out[sem_mask==142] = -1 # self.depth_normalize[1] - 1e-6
158
+ # get inverse depth
159
+ inv_depth = self.depth2invdepth(depth_out, sem_mask==142)
160
+ filename = os.path.basename(meta_data['rgb'])[:-4] + '.jpg'
161
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
162
+ cam_models_stacks = [
163
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
164
+ for i in [2, 4, 8, 16, 32]
165
+ ]
166
+
167
+ # stereo_depth
168
+ stereo_depth_pre_trans = other_labels[1] * (other_labels[1] > 0.3) * (other_labels[1] < 200)
169
+ stereo_depth = stereo_depth_pre_trans * transform_paras['label_scale_factor']
170
+ stereo_depth = self.normalize_depth(stereo_depth)
171
+
172
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
173
+ data = dict(input=rgbs[0],
174
+ target=depth_out,
175
+ intrinsic=curr_intrinsic_mat,
176
+ filename=filename,
177
+ dataset=self.data_name,
178
+ cam_model=cam_models_stacks,
179
+ pad=torch.tensor(pad),
180
+ data_type=[self.data_type, ],
181
+ sem_mask=sem_mask.int(),
182
+ stereo_depth= stereo_depth,
183
+ normal=normals[0],
184
+ inv_depth=inv_depth,
185
+ scale=transform_paras['label_scale_factor'])
186
+ return data
187
+
188
+ def load_batch(self, meta_data, data_path, test_mode):
189
+
190
+ # print('############')
191
+ # print(data_path['rgb_path'])
192
+ # print(data_path['normal_path'])
193
+ # print('############')
194
+
195
+ curr_intrinsic = meta_data['cam_in']
196
+ # load rgb/depth
197
+ curr_rgb, curr_depth = self.load_rgb_depth(data_path['rgb_path'], data_path['depth_path'], test_mode)
198
+ # get semantic labels
199
+ curr_sem = self.load_sem_label(data_path['sem_path'], curr_depth)
200
+ # create camera model
201
+ curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], curr_intrinsic)
202
+ # get normal labels
203
+ curr_normal = self.load_norm_label(data_path['normal_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1], test_mode=test_mode)
204
+ # get depth mask
205
+ depth_mask = self.load_depth_valid_mask(data_path['depth_mask_path'])
206
+ curr_depth[~depth_mask] = -1
207
+ # get stereo depth
208
+ curr_stereo_depth = self.load_stereo_depth_label(data_path['disp_path'], H=curr_rgb.shape[0], W=curr_rgb.shape[1])
209
+
210
+ data_batch = dict(
211
+ curr_rgb = curr_rgb,
212
+ curr_depth = curr_depth,
213
+ curr_sem = curr_sem,
214
+ curr_normal = curr_normal,
215
+ curr_cam_model=curr_cam_model,
216
+ curr_stereo_depth=curr_stereo_depth,
217
+ )
218
+ return data_batch
219
+
220
+ def load_rgb_depth(self, rgb_path: str, depth_path: str, test_mode: bool):
221
+ """
222
+ Load the rgb and depth map with the paths.
223
+ """
224
+ rgb = self.load_data(rgb_path, is_rgb_img=True)
225
+ if rgb is None:
226
+ self.logger.info(f'>>>>{rgb_path} has errors.')
227
+
228
+ depth = self.load_data(depth_path)
229
+ if depth is None:
230
+ self.logger.info(f'{depth_path} has errors.')
231
+
232
+ # self.check_data(dict(
233
+ # rgb_path=rgb,
234
+ # depth_path=depth,
235
+ # ))
236
+ depth = depth.astype(np.float)
237
+ # if depth.shape != rgb.shape[:2]:
238
+ # print(f'no-equal in {self.data_name}')
239
+ # depth = cv2.resize(depth, rgb.shape[::-1][1:])
240
+
241
+ depth = self.process_depth(depth, rgb, test_mode)
242
+ return rgb, depth
243
+
244
+ def process_depth(self, depth, rgb, test_mode=False):
245
+ depth[depth>65500] = 0
246
+ depth /= self.metric_scale
247
+ h, w, _ = rgb.shape # to rgb size
248
+ if test_mode==False:
249
+ depth = cv2.resize(depth, (w, h), interpolation=cv2.INTER_NEAREST)
250
+ return depth
251
+
252
+ def load_norm_label(self, norm_path, H, W, test_mode):
253
+
254
+ if norm_path is None:
255
+ norm_gt = np.zeros((H, W, 3)).astype(np.float32)
256
+ else:
257
+ norm_gt = cv2.imread(norm_path)
258
+ norm_gt = cv2.cvtColor(norm_gt, cv2.COLOR_BGR2RGB)
259
+
260
+ norm_gt = np.array(norm_gt).astype(np.uint8)
261
+
262
+ mask_path = 'orient-mask'.join(norm_path.rsplit('normal', 1))
263
+ mask_gt = cv2.imread(mask_path)
264
+ mask_gt = np.array(mask_gt).astype(np.uint8)
265
+ valid_mask = np.logical_not(
266
+ np.logical_and(
267
+ np.logical_and(
268
+ mask_gt[:, :, 0] == 0, mask_gt[:, :, 1] == 0),
269
+ mask_gt[:, :, 2] == 0))
270
+ valid_mask = valid_mask[:, :, np.newaxis]
271
+
272
+ # norm_valid_mask = np.logical_not(
273
+ # np.logical_and(
274
+ # np.logical_and(
275
+ # norm_gt[:, :, 0] == 0, norm_gt[:, :, 1] == 0),
276
+ # norm_gt[:, :, 2] == 0))
277
+ # norm_valid_mask = norm_valid_mask[:, :, np.newaxis]
278
+
279
+ norm_gt = ((norm_gt.astype(np.float32) / 255.0) * 2.0) - 1.0
280
+ norm_valid_mask = (np.linalg.norm(norm_gt, axis=2, keepdims=True) > 0.5) * valid_mask
281
+ norm_gt = norm_gt * norm_valid_mask
282
+
283
+ if test_mode==False:
284
+ norm_gt = cv2.resize(norm_gt, (W, H), interpolation=cv2.INTER_NEAREST)
285
+
286
+ return norm_gt
287
+
288
+
289
+
290
+ if __name__ == '__main__':
291
+ from mmcv.utils import Config
292
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
293
+ dataset_i = NYUDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
294
+ print(dataset_i)
295
+
external/Metric3D/training/mono/datasets/taskonomy_dataset.py ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from PIL import Image
9
+ from torch.utils.data import Dataset
10
+ import random
11
+ from .__base_dataset__ import BaseDataset
12
+ import pickle
13
+
14
+
15
+ class TaskonomyDataset(BaseDataset):
16
+ def __init__(self, cfg, phase, **kwargs):
17
+ super(TaskonomyDataset, self).__init__(
18
+ cfg=cfg,
19
+ phase=phase,
20
+ **kwargs)
21
+ self.metric_scale = cfg.metric_scale
22
+ #self.cap_range = self.depth_range # in meter
23
+
24
+ def __getitem__(self, idx: int) -> dict:
25
+ if self.phase == 'test':
26
+ return self.get_data_for_test(idx)
27
+ else:
28
+ return self.get_data_for_trainval(idx)
29
+
30
+ def load_meta_data(self, anno: dict) -> dict:
31
+ """
32
+ Load meta data information.
33
+ """
34
+ if self.meta_data_root is not None and ('meta_data' in anno or 'meta' in anno):
35
+ meta_data_path = os.path.join(self.meta_data_root, anno['meta_data']) if 'meta_data' in anno else os.path.join(self.meta_data_root, anno['meta'])
36
+ with open(meta_data_path, 'rb') as f:
37
+ meta_data = pickle.load(f)
38
+ meta_data.update(anno)
39
+ else:
40
+ meta_data = anno
41
+ u0, v0, fx, fy = meta_data['cam_in']
42
+ meta_data['cam_in'] = [fx, fy, u0, v0] # fix data bugs
43
+ return meta_data
44
+
45
+ def get_data_for_trainval(self, idx: int):
46
+ anno = self.annotations['files'][idx]
47
+ meta_data = self.load_meta_data(anno)
48
+
49
+ data_path = self.load_data_path(meta_data)
50
+ data_batch = self.load_batch(meta_data, data_path)
51
+ curr_rgb, curr_depth, curr_normal, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_cam_model']
52
+ curr_intrinsic = meta_data['cam_in']
53
+
54
+ ins_planes_path = os.path.join(self.data_root, meta_data['ins_planes']) if ('ins_planes' in meta_data) and (meta_data['ins_planes'] is not None) else None
55
+ # get instance planes
56
+ ins_planes = self.load_ins_planes(curr_depth, ins_planes_path)
57
+
58
+ # load data
59
+ # u0, v0, fx, fy = meta_data['cam_in'] # this is
60
+ # ori_curr_intrinsic = [fx, fy, u0, v0]
61
+ # curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
62
+
63
+ # get crop size
64
+ # transform_paras = dict()
65
+ transform_paras = dict(random_crop_size = self.random_crop_size)
66
+ rgbs, depths, intrinsics, cam_models, normals, other_labels, transform_paras = self.img_transforms(
67
+ images=[curr_rgb, ],
68
+ labels=[curr_depth, ],
69
+ intrinsics=[curr_intrinsic,],
70
+ cam_models=[curr_cam_model, ],
71
+ normals = [curr_normal, ],
72
+ other_labels=[ins_planes, ],
73
+ transform_paras=transform_paras)
74
+ # process instance planes
75
+ ins_planes = other_labels[0].int()
76
+
77
+ # clip depth map
78
+ depth_out = self.normalize_depth(depths[0])
79
+ # get inverse depth
80
+ inv_depth = self.depth2invdepth(depth_out, torch.zeros_like(depth_out, dtype=torch.bool))
81
+ filename = os.path.basename(meta_data['rgb'])
82
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
83
+ cam_models_stacks = [
84
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
85
+ for i in [2, 4, 8, 16, 32]
86
+ ]
87
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
88
+ data = dict(input=rgbs[0],
89
+ target=depth_out,
90
+ intrinsic=curr_intrinsic_mat,
91
+ filename=filename,
92
+ dataset=self.data_name,
93
+ cam_model=cam_models_stacks,
94
+ pad=torch.tensor(pad),
95
+ data_type=[self.data_type, ],
96
+ sem_mask=ins_planes,
97
+ normal=normals[0],
98
+ inv_depth=inv_depth,
99
+ stereo_depth=torch.zeros_like(inv_depth),
100
+ scale= transform_paras['label_scale_factor'])
101
+ return data
102
+
103
+ def get_data_for_test(self, idx: int):
104
+ anno = self.annotations['files'][idx]
105
+ meta_data = self.load_meta_data(anno)
106
+ data_path = self.load_data_path(meta_data)
107
+ data_batch = self.load_batch(meta_data, data_path)
108
+
109
+ curr_rgb, curr_depth, curr_normal, curr_cam_model = data_batch['curr_rgb'], data_batch['curr_depth'], data_batch['curr_normal'], data_batch['curr_cam_model']
110
+ ori_curr_intrinsic = meta_data['cam_in']
111
+
112
+ # curr_rgb_path = os.path.join(self.data_root, meta_data['rgb'])
113
+ # curr_depth_path = os.path.join(self.depth_root, meta_data['depth'])
114
+
115
+ # curr_rgb, curr_depth = self.load_rgb_depth(curr_rgb_path, curr_depth_path)
116
+ # ori_h, ori_w, _ = curr_rgb.shape
117
+ # # create camera model
118
+ # curr_cam_model = self.create_cam_model(curr_rgb.shape[0], curr_rgb.shape[1], ori_curr_intrinsic)
119
+ # load tmpl rgb info
120
+ # tmpl_annos = self.load_tmpl_image_pose(curr_rgb, meta_data)
121
+ # tmpl_rgbs = tmpl_annos['tmpl_rgb_list'] # list of reference rgbs
122
+
123
+ transform_paras = dict()
124
+ rgbs, depths, intrinsics, cam_models, _, other_labels, transform_paras = self.img_transforms(
125
+ images=[curr_rgb,], # + tmpl_rgbs,
126
+ labels=[curr_depth, ],
127
+ intrinsics=[ori_curr_intrinsic, ], # * (len(tmpl_rgbs) + 1),
128
+ cam_models=[curr_cam_model, ],
129
+ transform_paras=transform_paras)
130
+ # depth in original size and orignial metric***
131
+ depth_out = self.clip_depth(curr_depth) * self.depth_range[1]
132
+ inv_depth = self.depth2invdepth(depth_out, np.zeros_like(depth_out, dtype=np.bool))
133
+
134
+ filename = os.path.basename(meta_data['rgb'])
135
+ curr_intrinsic_mat = self.intrinsics_list2mat(intrinsics[0])
136
+
137
+ pad = transform_paras['pad'] if 'pad' in transform_paras else [0,0,0,0]
138
+ scale_ratio = transform_paras['label_scale_factor'] if 'label_scale_factor' in transform_paras else 1.0
139
+ cam_models_stacks = [
140
+ torch.nn.functional.interpolate(cam_models[0][None, :, :, :], size=(cam_models[0].shape[1]//i, cam_models[0].shape[2]//i), mode='bilinear', align_corners=False).squeeze()
141
+ for i in [2, 4, 8, 16, 32]
142
+ ]
143
+ raw_rgb = torch.from_numpy(curr_rgb)
144
+ curr_normal = torch.from_numpy(curr_normal.transpose((2,0,1)))
145
+
146
+ data = dict(input=rgbs[0],
147
+ target=depth_out,
148
+ intrinsic=curr_intrinsic_mat,
149
+ filename=filename,
150
+ dataset=self.data_name,
151
+ cam_model=cam_models_stacks,
152
+ pad=pad,
153
+ scale=scale_ratio,
154
+ raw_rgb=raw_rgb,
155
+ sample_id=idx,
156
+ data_path=meta_data['rgb'],
157
+ inv_depth=inv_depth,
158
+ normal=curr_normal,
159
+ )
160
+ return data
161
+
162
+ def load_norm_label(self, norm_path, H, W):
163
+ with open(norm_path, 'rb') as f:
164
+ normal = Image.open(f)
165
+ normal = np.array(normal.convert(normal.mode), dtype=np.uint8)
166
+ invalid_mask = np.all(normal == 128, axis=2)
167
+ normal = normal.astype(np.float64) / 255.0 * 2 - 1
168
+ normal[invalid_mask, :] = 0
169
+ return normal
170
+
171
+ def process_depth(self, depth: np.array, rgb: np.array) -> np.array:
172
+ depth[depth>60000] = 0
173
+ depth = depth / self.metric_scale
174
+ return depth
175
+
176
+ def load_ins_planes(self, depth: np.array, ins_planes_path: str) -> np.array:
177
+ if ins_planes_path is not None:
178
+ ins_planes = cv2.imread(ins_planes_path, -1)
179
+ else:
180
+ ins_planes = np.zeros_like(depth)
181
+ return ins_planes
182
+
183
+
184
+
185
+ if __name__ == '__main__':
186
+ from mmcv.utils import Config
187
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
188
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
189
+ print(dataset_i)
190
+
external/Metric3D/training/mono/datasets/uasol_dataset.py ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class UASOLDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(UASOLDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+ def process_depth(self, depth, rgb):
23
+ depth[depth>65500] = 0
24
+ depth /= self.metric_scale
25
+ return depth
26
+
27
+ def load_rgb_depth(self, rgb_path: str, depth_path: str) -> (np.array, np.array):
28
+ """
29
+ Load the rgb and depth map with the paths.
30
+ """
31
+ rgb = self.load_data(rgb_path, is_rgb_img=True)
32
+ if rgb is None:
33
+ self.logger.info(f'>>>>{rgb_path} has errors.')
34
+
35
+ depth = self.load_data(depth_path)
36
+ if depth is None:
37
+ self.logger.info(f'{depth_path} has errors.')
38
+
39
+ depth = depth.astype(np.float)
40
+
41
+ depth = self.process_depth(depth, rgb)
42
+ depth = depth[1:-1, ...]
43
+ return rgb, depth
44
+
45
+
46
+
47
+ if __name__ == '__main__':
48
+ from mmcv.utils import Config
49
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
50
+ dataset_i = UASOLDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
51
+ print(dataset_i)
52
+
external/Metric3D/training/mono/datasets/virtualkitti_dataset.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class VKITTIDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(VKITTIDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+
23
+ def process_depth(self, depth, rgb):
24
+ depth[depth>(150 * self.metric_scale)] = 0
25
+ depth /= self.metric_scale
26
+
27
+ return depth
28
+
29
+ def load_sem_label(self, sem_path, depth=None, sky_id=142) -> np.array:
30
+ """
31
+ Category r g b
32
+ Terrain 210 0 200
33
+ Sky 90 200 255
34
+ Tree 0 199 0
35
+ Vegetation 90 240 0
36
+ Building 140 140 140
37
+ Road 100 60 100
38
+ GuardRail 250 100 255
39
+ TrafficSign 255 255 0
40
+ TrafficLight 200 200 0
41
+ Pole 255 130 0
42
+ Misc 80 80 80
43
+ Truck 160 60 60
44
+ Car 255 127 80
45
+ Van 0 139 139
46
+ """
47
+ H, W = depth.shape
48
+ sem_label = np.ones((H, W), dtype=np.int) * -1
49
+ sem = cv2.imread(sem_path)[:, :, ::-1]
50
+ if sem is None:
51
+ return sem_label
52
+
53
+ sky_color = [90, 200, 255]
54
+ sky_mask = (sem == sky_color).all(axis=2)
55
+ sem_label[sky_mask] = 142 # set sky region to 142
56
+ return sem_label
57
+
58
+
59
+
60
+ if __name__ == '__main__':
61
+ from mmcv.utils import Config
62
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
63
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
64
+ print(dataset_i)
65
+
external/Metric3D/training/mono/datasets/waymo_dataset.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import torch
4
+ import torchvision.transforms as transforms
5
+ import os.path
6
+ import numpy as np
7
+ import cv2
8
+ from torch.utils.data import Dataset
9
+ import random
10
+ from .__base_dataset__ import BaseDataset
11
+
12
+
13
+ class WaymoDataset(BaseDataset):
14
+ def __init__(self, cfg, phase, **kwargs):
15
+ super(WaymoDataset, self).__init__(
16
+ cfg=cfg,
17
+ phase=phase,
18
+ **kwargs)
19
+ self.metric_scale = cfg.metric_scale
20
+
21
+
22
+ def process_depth(self, depth, rgb):
23
+ depth[depth>65500] = 0
24
+ depth /= 200.0
25
+ return depth
26
+
27
+
28
+
29
+ if __name__ == '__main__':
30
+ from mmcv.utils import Config
31
+ cfg = Config.fromfile('mono/configs/Apolloscape_DDAD/convnext_base.cascade.1m.sgd.mae.py')
32
+ dataset_i = ApolloscapeDataset(cfg['Apolloscape'], 'train', **cfg.data_basic)
33
+ print(dataset_i)
34
+
external/Metric3D/training/mono/tools/test.py ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import os.path as osp
3
+ import time
4
+ import sys
5
+ CODE_SPACE=os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
6
+ sys.path.append(CODE_SPACE)
7
+ #os.chdir(CODE_SPACE)
8
+ import argparse
9
+ import mmcv
10
+ import torch
11
+ import torch.distributed as dist
12
+ import torch.multiprocessing as mp
13
+
14
+ try:
15
+ from mmcv.utils import Config, DictAction
16
+ except:
17
+ from mmengine import Config, DictAction
18
+ from datetime import timedelta
19
+ import random
20
+ import numpy as np
21
+
22
+ from mono.datasets.distributed_sampler import log_canonical_transfer_info
23
+ from mono.utils.comm import init_env
24
+ from mono.utils.logger import setup_logger
25
+ from mono.utils.db import load_data_info, reset_ckpt_path
26
+ from mono.model.monodepth_model import get_configured_monodepth_model
27
+ from mono.datasets.distributed_sampler import build_dataset_n_sampler_with_cfg
28
+ from mono.utils.running import load_ckpt
29
+ from mono.utils.do_test import do_test_with_dataloader, do_test_check_data
30
+
31
+ def parse_args():
32
+ parser = argparse.ArgumentParser(description='Train a segmentor')
33
+ parser.add_argument('config', help='train config file path')
34
+ parser.add_argument('--show-dir', help='the dir to save logs and visualization results')
35
+ parser.add_argument(
36
+ '--load-from', help='the checkpoint file to load weights from')
37
+ parser.add_argument('--node_rank', type=int, default=0)
38
+ parser.add_argument('--nnodes',
39
+ type=int,
40
+ default=1,
41
+ help='number of nodes')
42
+ parser.add_argument(
43
+ '--options', nargs='+', action=DictAction, help='custom options')
44
+ parser.add_argument(
45
+ '--launcher', choices=['None', 'pytorch', 'slurm'], default='slurm',
46
+ help='job launcher')
47
+ args = parser.parse_args()
48
+ return args
49
+
50
+
51
+ def main(args):
52
+ os.chdir(CODE_SPACE)
53
+ cfg = Config.fromfile(args.config)
54
+ cfg.dist_params.nnodes = args.nnodes
55
+ cfg.dist_params.node_rank = args.node_rank
56
+
57
+ if args.options is not None:
58
+ cfg.merge_from_dict(args.options)
59
+ # set cudnn_benchmark
60
+ #if cfg.get('cudnn_benchmark', False) and args.launcher != 'ror':
61
+ # torch.backends.cudnn.benchmark = True
62
+
63
+ # show_dir is determined in this priority: CLI > segment in file > filename
64
+ if args.show_dir is not None:
65
+ # update configs according to CLI args if args.show_dir is not None
66
+ cfg.show_dir = args.show_dir
67
+ elif cfg.get('show_dir', None) is None:
68
+ # use config filename + timestamp as default show_dir if cfg.show_dir is None
69
+ cfg.show_dir = osp.join('./show_dirs',
70
+ osp.splitext(osp.basename(args.config))[0],
71
+ args.timestamp)
72
+
73
+ # ckpt path
74
+ if args.load_from is None:
75
+ raise RuntimeError('Please set model path!')
76
+ cfg.load_from = args.load_from
77
+
78
+ # create show dir
79
+ os.makedirs(osp.abspath(cfg.show_dir), exist_ok=True)
80
+
81
+ # init the logger before other steps
82
+ cfg.log_file = osp.join(cfg.show_dir, f'{args.timestamp}.log')
83
+ logger = setup_logger(cfg.log_file)
84
+
85
+ # log some basic info
86
+ logger.info(f'Config:\n{cfg.pretty_text}')
87
+
88
+ # load db_info for data
89
+ # load data info
90
+ data_info = {}
91
+ load_data_info('data_server_info', data_info=data_info)
92
+ cfg.db_info = data_info
93
+ # update check point info
94
+ reset_ckpt_path(cfg.model, data_info)
95
+
96
+ # log data transfer to canonical space info
97
+ # log_canonical_transfer_info(cfg)
98
+
99
+ # init distributed env first, since logger depends on the dist info.
100
+ if args.launcher == 'none':
101
+ cfg.distributed = False
102
+ else:
103
+ cfg.distributed = True
104
+ init_env(args.launcher, cfg)
105
+ logger.info(f'Distributed training: {cfg.distributed}')
106
+
107
+ # dump config
108
+ cfg.dump(osp.join(cfg.show_dir, osp.basename(args.config)))
109
+
110
+ if not cfg.distributed:
111
+ main_worker(0, cfg, args.launcher)
112
+ else:
113
+ mp.spawn(main_worker, nprocs=cfg.dist_params.num_gpus_per_node, args=(cfg, args.launcher))
114
+
115
+ def main_worker(local_rank: int, cfg: dict, launcher: str):
116
+ if cfg.distributed:
117
+ cfg.dist_params.global_rank = cfg.dist_params.node_rank * cfg.dist_params.num_gpus_per_node + local_rank
118
+ cfg.dist_params.local_rank = local_rank
119
+
120
+ torch.cuda.set_device(local_rank)
121
+ default_timeout = timedelta(minutes=30)
122
+ dist.init_process_group(backend=cfg.dist_params.backend,
123
+ init_method=cfg.dist_params.dist_url,
124
+ world_size=cfg.dist_params.world_size,
125
+ rank=cfg.dist_params.global_rank,
126
+ timeout=default_timeout,)
127
+
128
+ logger = setup_logger(cfg.log_file)
129
+ # build model
130
+ model = get_configured_monodepth_model(cfg,
131
+ None,
132
+ )
133
+
134
+ # build datasets
135
+ test_dataset, test_sampler = build_dataset_n_sampler_with_cfg(cfg, 'test')
136
+ # build data loaders
137
+ test_dataloader = torch.utils.data.DataLoader(dataset=test_dataset,
138
+ batch_size=1,
139
+ num_workers=1,
140
+ sampler=test_sampler,
141
+ drop_last=False)
142
+
143
+
144
+ # config distributed training
145
+ if cfg.distributed:
146
+ model = torch.nn.parallel.DistributedDataParallel(model.cuda(),
147
+ device_ids=[local_rank],
148
+ output_device=local_rank,
149
+ find_unused_parameters=True)
150
+ else:
151
+ model = torch.nn.DataParallel(model.cuda())
152
+
153
+ # load ckpt
154
+ #model, _, _, _ = load_ckpt(cfg.load_from, model, strict_match=False)
155
+ model.eval()
156
+ do_test_with_dataloader(model, cfg, test_dataloader, logger=logger, is_distributed=cfg.distributed)
157
+ # do_test_check_data(model, cfg, test_dataloader, logger=logger, is_distributed=cfg.distributed, local_rank=local_rank)
158
+
159
+
160
+ if __name__=='__main__':
161
+ # load args
162
+ args = parse_args()
163
+ timestamp = time.strftime('%Y%m%d_%H%M%S', time.localtime())
164
+ args.timestamp = timestamp
165
+ main(args)
external/Metric3D/training/mono/tools/train.py ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import os.path as osp
3
+ import time
4
+ import sys
5
+ CODE_SPACE=os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
6
+ sys.path.append(CODE_SPACE)
7
+ #os.chdir(CODE_SPACE)
8
+ import argparse
9
+ import copy
10
+ import mmcv
11
+ import torch
12
+ import torch.distributed as dist
13
+ import torch.multiprocessing as mp
14
+
15
+ try:
16
+ from mmcv.utils import Config, DictAction
17
+ except:
18
+ from mmengine import Config, DictAction
19
+ import socket
20
+ import subprocess
21
+ from datetime import timedelta
22
+ import random
23
+ import numpy as np
24
+ import logging
25
+
26
+ from mono.datasets.distributed_sampler import log_canonical_transfer_info
27
+ from mono.utils.comm import init_env, collect_env
28
+ from mono.utils.logger import setup_logger
29
+ from mono.utils.db import load_data_info, reset_ckpt_path
30
+ from mono.utils.do_train import do_train
31
+
32
+
33
+ def parse_args():
34
+ parser = argparse.ArgumentParser(description='Train a segmentor')
35
+ parser.add_argument('config', help='train config file path')
36
+ parser.add_argument('--work-dir', help='the dir to save logs and models')
37
+ parser.add_argument('--tensorboard-dir', help='the dir to save tensorboard logs')
38
+ parser.add_argument(
39
+ '--load-from', help='the checkpoint file to load weights from')
40
+ parser.add_argument(
41
+ '--resume-from', help='the checkpoint file to resume from')
42
+ parser.add_argument(
43
+ '--no-validate',
44
+ action='store_true',
45
+ help='whether not to evaluate the checkpoint during training')
46
+ parser.add_argument(
47
+ '--gpu-ids',
48
+ type=int,
49
+ nargs='+',
50
+ help='ids of gpus to use '
51
+ '(only applicable to non-distributed training)')
52
+ parser.add_argument('--seed', type=int, default=88, help='random seed')
53
+ parser.add_argument(
54
+ '--deterministic',
55
+ action='store_true',
56
+ help='whether to set deterministic options for CUDNN backend.')
57
+ parser.add_argument(
58
+ '--use-tensorboard',
59
+ action='store_true',
60
+ help='whether to set deterministic options for CUDNN backend.')
61
+ parser.add_argument(
62
+ '--options', nargs='+', action=DictAction, help='custom options')
63
+ parser.add_argument('--node_rank', type=int, default=0)
64
+ parser.add_argument('--nnodes',
65
+ type=int,
66
+ default=1,
67
+ help='number of nodes')
68
+ parser.add_argument(
69
+ '--launcher', choices=['None', 'pytorch', 'slurm', 'mpi', 'ror'], default='slurm',
70
+ help='job launcher')
71
+ parser.add_argument('--local_rank',
72
+ type=int,
73
+ default=0,
74
+ help='rank')
75
+ parser.add_argument('--experiment_name', default='debug', help='the experiment name for mlflow')
76
+ args = parser.parse_args()
77
+ return args
78
+
79
+
80
+ def set_random_seed(seed, deterministic=False):
81
+ """Set random seed.
82
+ Args:
83
+ @seed (int): Seed to be used.
84
+ @deterministic (bool): Whether to set the deterministic option for
85
+ CUDNN backend, i.e., set `torch.backends.cudnn.deterministic`
86
+ to True and `torch.backends.cudnn.benchmark` to False.
87
+ Default: False.
88
+ """
89
+ random.seed(seed)
90
+ np.random.seed(seed)
91
+ torch.manual_seed(seed)
92
+ torch.cuda.manual_seed_all(seed)
93
+ #if deterministic:
94
+ # torch.backends.cudnn.deterministic = True
95
+ # torch.backends.cudnn.benchmark = False
96
+
97
+ def main(args):
98
+ os.chdir(CODE_SPACE)
99
+ cfg = Config.fromfile(args.config)
100
+ cfg.dist_params.nnodes = args.nnodes
101
+ cfg.dist_params.node_rank = args.node_rank
102
+ cfg.deterministic = args.deterministic
103
+ if args.options is not None:
104
+ cfg.merge_from_dict(args.options)
105
+ # set cudnn_benchmark
106
+ #if cfg.get('cudnn_benchmark', False) and args.launcher != 'ror':
107
+ # torch.backends.cudnn.benchmark = True
108
+ # The flag below controls whether to allow TF32 on matmul. This flag defaults to False
109
+ # in PyTorch 1.12 and later.
110
+ # torch.backends.cuda.matmul.allow_tf32 = False
111
+ # The flag below controls whether to allow TF32 on cuDNN. This flag defaults to True.
112
+ # torch.backends.cudnn.allow_tf32 = False
113
+
114
+ # work_dir is determined in this priority: CLI > segment in file > filename
115
+ if args.work_dir is not None:
116
+ # update configs according to CLI args if args.work_dir is not None
117
+ cfg.work_dir = args.work_dir
118
+ elif cfg.get('work_dir', None) is None:
119
+ # use config filename + timestamp as default work_dir if cfg.work_dir is None
120
+ cfg.work_dir = osp.join('./work_dirs',
121
+ osp.splitext(osp.basename(args.config))[0],
122
+ args.timestamp)
123
+ # tensorboard_dir is determined in this priority: CLI > segment in file > filename
124
+ if args.tensorboard_dir is not None:
125
+ cfg.tensorboard_dir = args.tensorboard_dir
126
+ elif cfg.get('tensorboard_dir', None) is None:
127
+ # use cfg.work_dir + 'tensorboard' as default tensorboard_dir if cfg.tensorboard_dir is None
128
+ cfg.tensorboard_dir = osp.join(cfg.work_dir, 'tensorboard')
129
+
130
+ # ckpt path
131
+ if args.load_from is not None:
132
+ cfg.load_from = args.load_from
133
+ # resume training
134
+ if args.resume_from is not None:
135
+ cfg.resume_from = args.resume_from
136
+
137
+ # create work_dir and tensorboard_dir
138
+ os.makedirs(osp.abspath(cfg.work_dir), exist_ok=True)
139
+ os.makedirs(os.path.abspath(cfg.tensorboard_dir), exist_ok=True)
140
+
141
+ # init the logger before other steps
142
+ cfg.log_file = osp.join(cfg.work_dir, f'{args.timestamp}.log')
143
+ logger = setup_logger(cfg.log_file)
144
+
145
+ # init the meta dict to record some important information such as
146
+ # environment info and seed, which will be logged
147
+ meta = dict()
148
+ # log env info
149
+ env_info_dict = collect_env()
150
+ env_info = '\n'.join([f'{k}: {v}' for k, v in env_info_dict.items()])
151
+ dash_line = '-' * 60 + '\n'
152
+ logger.info('Environment info:\n' + dash_line + env_info + '\n' +
153
+ dash_line)
154
+ meta['env_info'] = env_info
155
+
156
+ # log some basic info
157
+ # logger.info(f'Config:\n{cfg.pretty_text}')
158
+
159
+ # mute online evaluation
160
+ if args.no_validate:
161
+ cfg.evaluation.online_eval = False
162
+
163
+
164
+ cfg.seed = args.seed
165
+ meta['seed'] = args.seed
166
+ meta['exp_name'] = osp.basename(args.config)
167
+
168
+ # load data info
169
+ data_info = {}
170
+ load_data_info('data_server_info', data_info=data_info)
171
+ cfg.db_info = data_info
172
+ # update check point info
173
+ reset_ckpt_path(cfg.model, data_info)
174
+
175
+ # log data transfer to canonical space info``
176
+ # log_canonical_transfer_info(cfg)
177
+
178
+ # init distributed env first, since logger depends on the dist info.
179
+ if args.launcher == 'None':
180
+ cfg.distributed = False
181
+ else:
182
+ cfg.distributed = True
183
+ init_env(args.launcher, cfg)
184
+ logger.info(f'Distributed training: {cfg.distributed}')
185
+ logger.info(cfg.dist_params)
186
+ # dump config
187
+ cfg.dump(osp.join(cfg.work_dir, osp.basename(args.config)))
188
+
189
+ cfg.experiment_name = args.experiment_name
190
+
191
+ if not cfg.distributed:
192
+ main_worker(0, cfg)
193
+ else:
194
+ # distributed training
195
+ if args.launcher == 'slurm':
196
+ mp.spawn(main_worker, nprocs=cfg.dist_params.num_gpus_per_node, args=(cfg, args.launcher))
197
+ elif args.launcher == 'pytorch':
198
+ main_worker(args.local_rank, cfg, args.launcher)
199
+
200
+ def main_worker(local_rank: int, cfg: dict, launcher: str='slurm'):
201
+ logger = setup_logger(cfg.log_file)
202
+ if cfg.distributed:
203
+ if launcher == 'slurm':
204
+ torch.set_num_threads(8) # without it, the spawn method is much slower than the launch method
205
+ cfg.dist_params.global_rank = cfg.dist_params.node_rank * cfg.dist_params.num_gpus_per_node + local_rank
206
+ cfg.dist_params.local_rank = local_rank
207
+ os.environ['RANK']=str(cfg.dist_params.global_rank)
208
+ else:
209
+ torch.set_num_threads(1)
210
+
211
+ torch.cuda.set_device(local_rank)
212
+ default_timeout = timedelta(minutes=10)
213
+ dist.init_process_group(
214
+ backend=cfg.dist_params.backend,
215
+ init_method=cfg.dist_params.dist_url,
216
+ world_size=cfg.dist_params.world_size,
217
+ rank=cfg.dist_params.global_rank,)
218
+ #timeout=default_timeout,)
219
+ dist.barrier()
220
+
221
+ # if cfg.distributed:
222
+
223
+ # cfg.dist_params.global_rank = cfg.dist_params.node_rank * cfg.dist_params.num_gpus_per_node + local_rank
224
+ # cfg.dist_params.local_rank = local_rank
225
+ # os.environ['RANK']=str(cfg.dist_params.global_rank)
226
+
227
+ # if launcher == 'ror':
228
+ # init_torch_process_group(use_hvd=False)
229
+ # else:
230
+ # #torch.set_num_threads(4) # without it, the spawn method maybe much slower than the launch method
231
+ # torch.cuda.set_device(local_rank)
232
+ # default_timeout = timedelta(minutes=30)
233
+ # dist.init_process_group(
234
+ # backend=cfg.dist_params.backend,
235
+ # init_method=cfg.dist_params.dist_url,
236
+ # world_size=cfg.dist_params.world_size,
237
+ # rank=cfg.dist_params.global_rank,)
238
+ # #timeout=default_timeout,)
239
+
240
+ # set random seeds
241
+ if cfg.seed is not None:
242
+ logger.info(f'Set random seed to {cfg.seed}, deterministic: 'f'{cfg.deterministic}')
243
+ set_random_seed(cfg.seed, deterministic=cfg.deterministic)
244
+ # with torch.autograd.set_detect_anomaly(True):
245
+ do_train(local_rank, cfg)
246
+
247
+
248
+ if __name__=='__main__':
249
+ # load args
250
+ args = parse_args()
251
+ timestamp = time.strftime('%Y%m%d_%H%M%S', time.localtime())
252
+ args.timestamp = timestamp
253
+ print(args.work_dir, args.tensorboard_dir)
254
+ main(args)