StarFinderBase#
- class photutils.detection.StarFinderBase[source]#
Bases:
objectAbstract base class for star finders.
Methods Summary
__call__(data[, mask])Find stars in an astronomical image.
find_stars(data, *[, mask])Find stars in an astronomical image.
Methods Documentation
- __call__(data, mask=None)[source]#
Find stars in an astronomical image.
- Parameters:
- data2D array_like
The 2D image array.
- mask2D bool array, optional
A boolean mask with the same shape as
data, where aTruevalue indicates the corresponding element ofdatais masked. Masked pixels are ignored when searching for stars.
- Returns:
- abstractmethod find_stars(data, *, mask=None)[source]#
Find stars in an astronomical image.
- Parameters:
- data2D array_like
The 2D image array.
- mask2D bool array, optional
A boolean mask with the same shape as
data, where aTruevalue indicates the corresponding element ofdatais masked. Masked pixels are ignored when searching for stars.
- Returns: