Skip to content

Commit

Permalink
Refs #114. smooth the averages of df and ob
Browse files Browse the repository at this point in the history
  • Loading branch information
yxqd committed Oct 4, 2018
1 parent c80830c commit ec03bf2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/imars3d/filters/normalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ def average(image_collection):
bar.update(i)
continue
print('\n')
return res/N
ret = res/N
from .smoothing import filter_one_median
return filter_one_median(ret, 5)


def normalize(ct_series, df_images, ob_images, workdir, output_img_series):
Expand Down

0 comments on commit ec03bf2

Please sign in to comment.