We have some images with awkward edges, like this:

that end up rejecting all of the found stars in the image as "too faint" at this stage:
|
if verbose: |
|
print('Extension %s, iteration %2d, found %6d sources; %4d close and ' |
|
'%4d faint sources removed.' % |
|
(ccd, titer+1, len(xn), |
|
numpy.sum(~isolatedenough), |
|
numpy.sum(~brightenough & isolatedenough))) |
There doesn't appear to be anything obviously wrong with the weights (they're zero where the data are zero outside the image footprint). However, I suspect a problem with the sky modeling. Zooming in on part of the sky model, we have a corner-like artifact:

Any idea how to suppress this?
We have some images with awkward edges, like this:

that end up rejecting all of the found stars in the image as "too faint" at this stage:
crowdsource/crowdsource/crowdsource_base.py
Lines 916 to 921 in fc92330
There doesn't appear to be anything obviously wrong with the weights (they're zero where the data are zero outside the image footprint). However, I suspect a problem with the sky modeling. Zooming in on part of the sky model, we have a corner-like artifact:

Any idea how to suppress this?