Skip to content

Commit

Permalink
BUG: Fix name of functions used in remove_all_stripe (#427)
Browse files Browse the repository at this point in the history
Closes #426
  • Loading branch information
nghia-vo authored and carterbox committed Jul 8, 2019
1 parent 25225b7 commit b5789d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/tomopy/prep/stripe.py
Expand Up @@ -838,6 +838,6 @@ def _remove_all_stripe(tomo, snr, la_size, sm_size):
matindex = _create_matindex(tomo.shape[2], tomo.shape[0])
for m in range(tomo.shape[1]):
sino = tomo[:, m, :]
sino = _rs_algorithm_6(sino, snr, la_size, matindex)
sino = _rs_algorithm_3(sino, sm_size, matindex)
sino = _rs_dead(sino, snr, la_size, matindex)
sino = _rs_sort(sino, sm_size, matindex)
tomo[:, m, :] = sino

0 comments on commit b5789d5

Please sign in to comment.