public interface ImageClassifying
| Modifier and Type | Method and Description |
|---|---|
List<StarDetection> |
detect(MImageHDU reduced,
Rectangle readout,
Dimension bin)
Converts a reduced detector image into a list of possible stars.
|
List<StarDetection> |
removeGhosts(List<StarDetection> mirrors,
List<StarDetection> found)
Some acquisition systems may produce ghost images of bright stars.
|
List<StarDetection> |
removeMirrors(List<StarDetection> found)
Some acquisition systems may produce mirror images of bright stars.
|
List<StarDetection> |
removeSpurious(List<StarDetection> found)
Removes the spurious detections from the list of stars detected.
|
List<StarDetection> |
removeStripes(List<StarDetection> found)
On a shutterless system, read-out stripes may accidentally be identified
as stars.
|
boolean |
setReadoutStripes(int adu)
Expected ADU signal for a read-out stripe on shutterless systems.
|
boolean |
setShutterless(boolean noshutter)
Acquisition is on a shutterless system.
|
boolean setShutterless(boolean noshutter)
boolean setReadoutStripes(int adu)
List<StarDetection> detect(MImageHDU reduced, Rectangle readout, Dimension bin) throws BasicFitsException
reduced - readout - bin - BasicFitsExceptionList<StarDetection> removeSpurious(List<StarDetection> found)
found - All possible stars, on return without spurious detectionsList<StarDetection> removeStripes(List<StarDetection> found)
found - All possible stars, on return without stripesList<StarDetection> removeMirrors(List<StarDetection> found)
found - All possible stars, on return without mirrors.List<StarDetection> removeGhosts(List<StarDetection> mirrors, List<StarDetection> found)
found - All possible stars, on return without ghosts.