Skip to content
Snippets Groups Projects
Commit 1d0c6812 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent c90e9527
Branches
No related tags found
No related merge requests found
......@@ -536,7 +536,7 @@ def run_icing_predict_image(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output
prob_s.append(probs)
prob_s = np.stack(prob_s, axis=-1)
max_prob = np.max(prob_s, axis=2)
max_prob = medfilt2d(max_prob)
# max_prob = medfilt2d(max_prob)
max_prob = np.where(max_prob < prob_thresh, np.nan, max_prob)
make_icing_image(h5f, max_prob, None, None, clvrx_str_time, satellite, domain,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment