-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmain.py
231 lines (187 loc) · 9.92 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import argparse
import os
import sys
import warnings
import glob2
import numpy as np
from common import db, my_utils
from common.generator import Generator
np.random.seed(0)
warnings.filterwarnings("ignore")
def check_arg(args):
parser = argparse.ArgumentParser(description='Rain renderer method')
parser.add_argument('--dataset',
help='Enter dataset name. Dataset data must be located in: DATASET_ROOT/DATASET',
type=str, required=True)
# changed according to mode
parser.add_argument('-k', '--dataset_root',
help='Path to database root',
default=os.path.join('data', 'source'),
required=False)
# only for nuscenes (temporarily deactivated)
# only for nuscenes and nuscenes_gan
# parser.add_argument('--json_file', help='token files in json for nuscenes', required=False)
#
# parser.add_argument('-g', '--gan_root',
# help='Path to modified gan database root',
# default=os.path.join('data', 'gan'),
# required=False)
parser.add_argument('-p', '--post_fix',
help='Post fix added at the end of the modified gan file (ex.: "fake_B")',
default="", type=str, required=False)
parser.add_argument('-s', '--sequences',
help='List of sequences comma separated (e.g. for KITTI: data_object/training,data_object/testing).',
default='',
required=False)
# noise
parser.add_argument('-ns', '--noise_scale',
type=float,
default=0.0)
parser.add_argument('-nv', '--noise_std',
type=float,
default=0.0)
parser.add_argument('-oa', '--opacity_attenuation',
help='Opacity attenuation of the rain layer. Values must be between 0 and 1',
type=float,
default=1.0)
parser.add_argument('-r', '--particles',
help='Path to particles simulations',
default=os.path.join('data', 'particles'),
required=False)
# stays the same everywhere
parser.add_argument('-sd', '--streaks_db',
help='Path to rain streaks database (Garg and Nayar, 2006)',
default=os.path.join('3rdparty', 'rainstreakdb'),
required=False)
# if not provided outputs results of every supported intensity
parser.add_argument('-i', '--intensity',
help='Rain Intensities. List of fall rate comma-separated. E.g.: 1,15,25,50.',
type=str,
default='25',
required=False)
parser.add_argument('-d', '--depth',
help='Path to depths',
default=os.path.join('data', 'source'),
required=False)
# ways to not process all the frames in a sequence
parser.add_argument('-fs', '--frame_start',
help='Frame start',
type=int,
default=0)
parser.add_argument('-fe', '--frame_end',
help='Frame end',
type=int,
default=None)
parser.add_argument('-fst', '--frame_step',
help='Frame step',
type=int,
default=1)
parser.add_argument('-ff', '--frames',
type=str,
required=False,
default="")
parser.add_argument('--conflict_strategy',
help='Strategy to use if output already exists.',
type=str,
choices=['overwrite', 'skip', 'rename_folder'],
default='overwrite',
required=False)
parser.add_argument('--rendering_strategy',
help='Rendering strategy',
choices=[None, 'white', 'naive_db'],
type=str,
default=None,
required=False)
parser.add_argument('--output',
default=os.path.join('data', 'output'),
help='Where to save the output',
required=False)
parser.add_argument('--save_envmap',
help='Save environment maps, useful for debug purposes. NOTE: envmap are overwritten if they exist, regardless of the conflict strategy.',
action='store_true')
parser.add_argument('--noverbose',
action='store_true')
parser.add_argument('--force_particles',
help='Force particles simulator to run even if simulation exist',
action='store_true')
results = parser.parse_args(args)
assert not results.force_particles or results.conflict_strategy != "skip", "If particles simulator is forced, cannot skip"
results.verbose = not results.noverbose
results.texture = os.path.join(results.streaks_db, 'env_light_database', 'size32')
results.norm_coeff = os.path.join(results.streaks_db, 'env_light_database', 'txt', 'normalized_env_max.txt')
assert os.path.exists(results.streaks_db), ("rainstreakdb database is missing.", results.streaks_db)
assert os.path.exists(results.texture), ("rainstreakdb database is not valid. Some files are missing.", results.texture)
assert os.path.exists(results.norm_coeff), ("rainstreakdb database is not valid. Some files are missing.", results.norm_coeff)
results.intensity = [int(i) for i in results.intensity.split(",")]
if results.frames:
results.frames = [int(i) for i in results.frames.split(",")]
dataset_name = results.dataset if "_gan" not in results.dataset else results.dataset[:-4]
results.dataset_root = os.path.join(results.dataset_root, dataset_name)
results.depth_root = os.path.join(results.depth, dataset_name)
results.calib = None
results.images_root = os.path.join(results.dataset_root)
assert os.path.exists(results.images_root), ("Dataset folder does not exist.", results.images_root)
sequences_filter = results.sequences.split(',')
results = db.resolve_paths(results.dataset, results)
results.settings = db.settings(results.dataset)
# Filter sequences
results.sequences = np.asarray([seq for seq in results.sequences if np.any([seq[:len(_s)] == _s for _s in sequences_filter])])
# Build weathers to render
results.weather = np.asarray([{"weather": "rain", "fallrate": i} for i in results.intensity])
# Check sequences are valid
print("\nChecking sequences...")
print(" {} sequences found: {}".format(len(results.sequences), [s for s in results.sequences]))
for seq in results.sequences:
valid = True
if not os.path.exists(results.images[seq]):
print(" Skip sequence '{}': images folder is missing {}".format(seq, results.images[seq]))
valid = False
if not os.path.exists(results.depth[seq]):
print(" Skip sequence '{}': depth folder is missing {}".format(seq, results.depth[seq]))
valid = False
if results.calib[seq] is not None and not np.all([os.path.exists(f) for f in results.calib[seq]] if isinstance(results.calib[seq], list) else os.path.exists(results.calib[seq])):
print(" Skip sequence '{}': calib data is missing {}".format(seq, results.calib[seq]))
valid = False
if not valid:
results.sequences = results.sequences[results.sequences != seq]
# del results.particles[seq]
del results.images[seq]
del results.depth[seq]
del results.calib[seq]
print("Found {} valid sequence(s): {}".format(len(results.sequences), [s for s in results.sequences]))
# Resolving particle simulation files
# Check simulation file exists, if not run particle simulation before hand
print("\nResolving particles simulations...")
particles_root = os.path.join(results.particles, results.dataset)
sims_to_run = []
results.particles = {}
for seq in results.sequences:
results.particles[seq] = db.sim(results.dataset, seq, particles_root)
# Check if there is a need to run simulation
weathers_to_run = [w for w in results.weather if len(glob2.glob(my_utils.particles_path(results.particles[seq]["path"], w))) == 0 or results.force_particles]
if len(weathers_to_run) != 0:
sims_to_run.append({"path": [results.particles[seq]["path"]], "options": [results.particles[seq]["options"]], "weather": weathers_to_run})
if len(sims_to_run) == 0:
print(" All particles simulations ready")
else:
print(" {} particles simulations to compute... Simulations will attempt to run automatically using weather particle simulator".format(len(sims_to_run)))
for sim in sims_to_run:
import tools.particles_simulation
tools.particles_simulation.process(sim, force_recompute=True) # Current script already decided it has to be re-run
print(" All particles simulation completed")
# Resolve particle simulation files path
particles2 = {}
for seq in results.sequences:
try:
particles2[seq] = [glob2.glob(my_utils.particles_path(results.particles[seq]["path"], w))[0] for w in results.weather]
except Exception:
print('Something went wrong, cannot locate particles simulation file for sequence {}'.format(seq))
print("Might crash later on")
results.particles = particles2
return results
if __name__ == "__main__":
print("\nBuilding internal parameters...")
args = check_arg(sys.argv[1:])
print("\nRunning renderers...")
generator = Generator(args)
generator.run()