Skip to content
Snippets Groups Projects
Commit 29624ac1 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 04e19243
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ def run_all(directory):
img_tiles = []
for idx, mfile in enumerate(mod_files):
if idx % 16 == 0:
if idx % 8 == 0:
w_o_ext, ext = os.path.splitext(mfile)
ifile = w_o_ext+'.highres'+ext
if not os.path.exists(ifile):
......@@ -36,14 +36,6 @@ def run_all(directory):
mod_nda = np.stack(mod_tiles)
img_nda = np.stack(img_tiles)
mod_mean = mod_nda.mean()
img_mean = img_nda.mean()
mod_std = mod_nda.std()
img_std = img_nda.std()
mod_nda = (mod_nda - mod_mean) / mod_std
img_nda = (img_nda - img_mean) / img_std
np.save('/data/Personal/rink/viirs/mod_res_'+str(cnt), mod_nda)
np.save('/data/Personal/rink/viirs/img_res_'+str(cnt), img_nda)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment