1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
SEP
===
*Python library for Source Extraction and Photometry*
About
-----
`Source Extractor <http://www.astromatic.net/software/sextractor>`_
(Bertin & Arnouts 1996) is a widely used
command-line program for segmentation and analysis of astronomical
images. It reads in FITS format files, performs a configurable series
of tasks, including background estimation, source detection,
deblending and a wide array of source measurements, and finally
outputs a FITS format catalog file.
While Source Extractor is highly useful, the fact that it can only be
used as an executable can limit its applicability or lead to awkward
workflows. There is often a desire to have programmatic access to
perform one or more of the above tasks on in-memory images as part of
a larger custom analysis.
**SEP makes the core algorithms of Source Extractor available as a
library of stand-alone functions and classes.** These operate directly
on in-memory arrays (no FITS files or configuration files). The code
is derived from the Source Extractor code base (written in C) and aims
to produce results compatible with Source Extractor whenever possible.
SEP consists of a C library with no dependencies outside the standard
library, and a Python module that wraps the C library in a Pythonic
API. The Python wrapper operates on NumPy arrays with NumPy as its
only dependency. See below for language-specfic build and usage
instructions.
**Some features:**
- spatially variable background and noise estimation
- source extraction, with on-the-fly convolution and source deblending
- circular and elliptical aperture photometry
- fast: implemented in C with Python bindings via Cython
**Additional features not in Source Extractor:**
- Optimized matched filter for variable noise in source extraction.
- Circular annulus and elliptical annulus aperture photometry functions.
- Local background subtraction in shape consistent with aperture in
aperture photometry functions.
- Exact pixel overlap mode in all aperture photometry functions.
- Masking of elliptical regions on images.
SEP, SEP-PJW, and Package Names
...............................
``sep`` was originally released by Kyle Barbary, at
`kbarbary/sep <https://github.com/kbarbary/sep>`_ (``sep<=1.2.1``). For a
brief period, the package was maintained by Peter Watson, under the
``sep-pjw`` package name, at
`PJ-Watson/sep-pjw <https://github.com/PJ-Watson/sep-pjw>`_ and
`PyPI/sep-pjw <https://pypi.org/project/sep-pjw/>`_
(``1.3.0<=sep-pjw<=1.3.8``). Both of these repositories will be archived,
and future development will take place at
`sep-developers/sep <https://github.com/sep-developers/sep>`_
(``sep>=1.4.0``).
Note that there may be some incompatibilities between ``sep==1.2.1`` and
``sep==1.4.0`` when using the C-API directly -- the changes are documented
:doc:`here <changelogs/changes_to_c_api>`.
Installation
------------
with conda
..........
SEP can be installed with conda from the ``conda-forge`` channel::
conda install -c conda-forge sep
with pip
........
SEP can also be installed with `pip <https://pip.pypa.io>`_. After
ensuring that numpy is installed, run ::
python -m pip install sep
If you get an error about permissions, you are probably using your
system Python. In this case, I recommend using `pip's "user install"
<https://pip.pypa.io/en/latest/user_guide/#user-installs>`_ option to
install sep into your user directory ::
python -m pip install --user sep
Do **not** install ``sep`` or other third-party Python packages using
``sudo`` unless you are fully aware of the risks.
Usage Guide
-----------
.. toctree::
:maxdepth: 1
tutorial
filter
apertures
changelogs/changelog
.. toctree::
:hidden:
reference
For complete API documentation, see :doc:`reference`.
Contributing
------------
Report a bug or documentation issue:
http://github.com/sep-developers/sep/issues
Development of ``sep`` takes place on GitHub at
http://github.com/sep-developers/sep. Contributions of bug fixes,
documentation improvements and minor feature additions are welcome via
GitHub pull requests. For major features, it is best to open an issue
discussing the change first.
License and Citation
--------------------
The license for SEP is the Lesser GNU Public License (LGPL), granted
with the permission from the original author of Source Extractor.
If you use SEP in a publication, please cite `Barbary (2016)
<http://dx.doi.org/10.21105/joss.00058>`_ and the original Source
Extractor paper: `Bertin & Arnouts 1996
<http://adsabs.harvard.edu/abs/1996A%26AS..117..393B>`_.
The DOI for the sep v1.0.0 code release is `10.5281/zenodo.159035
<http://dx.doi.org/10.5281/zenodo.159035>`_.
|