Skip to content

Commit

Permalink
Remove leftover debugging print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
DBerke committed Jan 11, 2023
1 parent 67957c9 commit ed22230
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions geminidr/core/primitives_nearIR.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,15 +371,15 @@ def cleanReadout(self, adinputs=None, **params):
on each side of the interface.
Note that for intra-quad leveling, this width is broadened by a factor 10.
sg_win_size: int
Smoothing window size for the Savitzky-Golay filter applied during automated
detection of pattern coverage.
Smoothing window size for the Savitzky-Golay filter applied during automated
detection of pattern coverage.
simple_thres: float
Threshold used in automated detection of pattern coverage.
Favorable range [0.3, 0.8]. If the result (at the intra-quad level) is not satisfactory,
play with this parameter.
Threshold used in automated detection of pattern coverage.
Favorable range [0.3, 0.8]. If the result (at the intra-quad level) is not satisfactory,
play with this parameter.
pat_strength_thres: float
Threshold used to characterise the strength of the pattern noise. If greater than
this value, run the whole machinery otherwise leave the frame untouched.
Threshold used to characterise the strength of the pattern noise. If greater than
this value, run the whole machinery otherwise leave the frame untouched.
clean: str, Default: "skip"
Must be one of "skip", "default", or "force".
skip: Skip this routine entirely when called from a recipe.
Expand Down Expand Up @@ -524,8 +524,6 @@ def reblock(data):
new_edges, affected_rows = find_edges(
combined_pattern_strength, sigma=canny_sigma,
min_range=simple_thres, pysize=pysize)
print(new_edges)
print(affected_rows)
top_affected_rows = flip(affected_rows, padding)
for (ystart, xstart), _dict in edges.items():
if _dict["clean"]:
Expand Down

0 comments on commit ed22230

Please sign in to comment.