Skip to content

Commit

Permalink
fix function call
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Oct 25, 2023
1 parent 681c371 commit af221d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions romancal/scripts/preview.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def preview(input: Path, output: Path):
data,
output,
shape=(1080, 1080),
normalization=percentile_normalization(),
normalization=percentile_normalization(data, percentile=90),
colormap="afmhot",
)

Expand All @@ -26,7 +26,7 @@ def thumbnail(input: Path, output: Path):
data,
output,
shape=(300, 300),
normalization=percentile_normalization(),
normalization=percentile_normalization(data, percentile=90),
colormap="afmhot",
)

Expand Down

0 comments on commit af221d5

Please sign in to comment.