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


Public Member Functions | |
| __init__ (self, x_coord, y_coord, flux, effective_radius, aspect_ratio, angle) | |
| get_params (self) | |
| Public Member Functions inherited from sourcextractor.config.model_fitting.CoordinateModelBase | |
| __init__ (self, x_coord, y_coord, flux) | |
Public Attributes | |
| effective_radius | |
| aspect_ratio | |
| angle = angle if isinstance(angle, ParameterBase) else ConstantParameter(angle) | |
| 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) | |
Base class for the Sersic, Exponential and de Vaucouleurs models. It can not be used directly.
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
effective_radius : ParameterBase or float
Ellipse semi-major axis, in pixels on the detection image.
aspect_ratio : ParameterBase or float
Ellipse ratio.
angle : ParameterBase or float
Ellipse rotation, in radians
Definition at line 538 of file model_fitting.py.
| sourcextractor.config.model_fitting.SersicModelBase.__init__ | ( | self, | |
| x_coord, | |||
| y_coord, | |||
| flux, | |||
| effective_radius, | |||
| aspect_ratio, | |||
| angle ) |
Constructor.
Definition at line 558 of file model_fitting.py.
| sourcextractor.config.model_fitting.SersicModelBase.get_params | ( | self | ) |
Reimplemented from sourcextractor.config.model_fitting.CoordinateModelBase.
Reimplemented in sourcextractor.config.model_fitting.SersicModel.
Definition at line 571 of file model_fitting.py.
References angle, aspect_ratio, and effective_radius.
| sourcextractor.config.model_fitting.SersicModelBase.angle = angle if isinstance(angle, ParameterBase) else ConstantParameter(angle) |
Definition at line 569 of file model_fitting.py.
Referenced by sourcextractor.config.model_fitting.ComputeGraphModel.get_params(), and get_params().
| sourcextractor.config.model_fitting.SersicModelBase.aspect_ratio |
Definition at line 566 of file model_fitting.py.
Referenced by sourcextractor.config.model_fitting.ComputeGraphModel.get_params(), and get_params().
| sourcextractor.config.model_fitting.SersicModelBase.effective_radius |
Definition at line 563 of file model_fitting.py.
Referenced by get_params().