Measurements.rst 1.69 KB
Newer Older
1
.. File Measurements.rst
2

Emmanuel Bertin's avatar
Emmanuel Bertin committed
3
4
.. include:: global.rst

5
6
7
Measurements
============

Emmanuel Bertin's avatar
Emmanuel Bertin committed
8
9
Once sources have been detected and deblended, they enter the measurement phase.
|SExtractor| performs three categories of measurements: isophotal, full, and model-fitting.
10

11
12
.. _isophotal_measurements:

13
Isophotal
14
  Measurements are made on the isophotal object footprints, which are defined on the filtered detection image. Only pixels with values above the detection threshold (set with ``DETECT_THRESH``) are considered [#thresh]_, which makes the analysis extremely fast, but obviously strongly dependent on the threshold itself. This is an issue particularly when the amplitude of the bakground noise varies over the image. Many of the isophotal measurements (e.g., :param:`X_IMAGE`, :param:`Y_IMAGE`, :param:`FLUX_ISO`) are necessary for the internal operations of |SExtractor| and are therefore executed even if they are not requested.
15
16

Full
17
  Measurements have access to all pixels of the image. These measurements are generally more sophisticated, less affected by variable biases induced by the detection threshold, and still reasonably fast. They are done at a later stage of the processing, after CLEANing and MASKing.
18
19
20

Model-fitting
  Measurements require PSF models [#psf_models]_. They are often the most accurate and can recover the flux of saturated objects. They are also much slower, allowing typically only a few tens of objects to be processed every second.
21
22
23
24
25

.. toctree::

  Position
  PositionWin
26
  Photom
27
  Model
28
  ClassStar
29

30
.. [#thresh] For some isophotal measurements pixel values also have to exceed the local analysis threshold set with ``ANALYSIS_THRESH``.
31
32
.. [#psf_models] PSF models be computed using the |PSFEx|_ package.

33