Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion acstools/satdet.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def _detsat_one(filename, ext, sigma=2.0, low_thresh=0.1, h_thresh=0.5,
high_threshold=immax * h_thresh)

# clean up the small objects, will make less noise
morph.remove_small_objects(edge, min_size=small_edge, connectivity=8,
morph.remove_small_objects(edge, max_size=small_edge - 1, connectivity=8,
out=edge)

# create an array of angles from 0 to 180, exactly 0 will get bad columns
Expand Down
Loading