Skip to content
Snippets Groups Projects

fixed slices

Merged Guillaume HEUSCH requested to merge guillaume-modif into master
2 files
+ 6
21
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 4
4
@@ -40,9 +40,9 @@ for root, dirs, files in os.walk(d, topdown=False):
nir_735 = f.stream('nir_left_735nm')
nir_850 = f.stream('nir_left_850nm')
nir_940 = f.stream('nir_left_940nm')
swir_1050 = f.stream('swir_1050nm').clean_dead()
swir_1300 = f.stream('swir_1300nm').clean_dead()
swir_1550 = f.stream('swir_1550nm').clean_dead()
swir_1050 = f.stream('swir_1050nm').clean()
swir_1300 = f.stream('swir_1300nm').clean()
swir_1550 = f.stream('swir_1550nm').clean()
thermal = f.stream('thermal')
swir = swir_1550.stack(swir_1300).stack(swir_1050)
@@ -113,7 +113,7 @@ for root, dirs, files in os.walk(d, topdown=False):
exp = np.concatenate((exp_map_depth, exp_color, exp_nir_rl, exp_rep_nir_norm, exp_rep_swir_norm, exp_thermal), axis=2)
out_dir = '/idiap/temp/dgeissbuhler/batl2_pre/viz/'
out_dir = '.'
bob.io.base.save(exp, os.path.join(out_dir, name) + '.png')
Loading