|
SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
|


Public Member Functions | |
| __init__ (self, x_coord, y_coord, flux) | |
| to_string (self, show_params=False) | |
| Public Member Functions inherited from sourcextractor.config.model_fitting.CoordinateModelBase | |
| __init__ (self, x_coord, y_coord, flux) | |
| get_params (self) | |
Additional Inherited Members | |
| Public Attributes inherited from sourcextractor.config.model_fitting.CoordinateModelBase | |
| x_coord = x_coord if isinstance(x_coord, ParameterBase) else ConstantParameter(x_coord) | |
| y_coord = y_coord if isinstance(y_coord, ParameterBase) else ConstantParameter(y_coord) | |
| flux = flux if isinstance(flux, ParameterBase) else ConstantParameter(flux) | |
Models a source as a point, spread by the PSF.
Parameters
----------
x_coord : ParameterBase or float
X coordinate (in the detection image)
y_coord : ParameterBase or float
Y coordinate (in the detection image)
flux : ParameterBase or float
Total flux
Definition at line 458 of file model_fitting.py.
| sourcextractor.config.model_fitting.PointSourceModel.__init__ | ( | self, | |
| x_coord, | |||
| y_coord, | |||
| flux ) |
Constructor.
Definition at line 472 of file model_fitting.py.
| sourcextractor.config.model_fitting.PointSourceModel.to_string | ( | self, | |
| show_params = False ) |
Return a human readable representation of the model.
Parameters
----------
show_params: bool
If True, include information about the parameters.
Returns
-------
str
Definition at line 478 of file model_fitting.py.