File: __init__.py

package info (click to toggle)
python-sigima 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 24,956 kB
  • sloc: python: 33,326; makefile: 3
file content (59 lines) | stat: -rw-r--r-- 1,751 bytes parent folder | download
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
"""
Tools (:mod:`sigima.tools`)
---------------------------

This package contains functions operating on NumPy arrays that are intended to be
used in Sigima computation functions. These functions are complementary to the
algorithms provided by external libraries such as SciPy, NumPy, and scikit-image.

Even though these functions are primarily designed to be used in the Sigima pipeline,
they can also be used independently. They provide a wide range of features but are
not exhaustive due to the vast number of algorithms already available in the
scientific Python ecosystem.

.. seealso::

    The :mod:`sigima.proc` module contains the Sigima computation functions that
    operate on signal and image objects (i.e. :class:`sigima.objects.SignalObj` and
    :class:`sigima.objects.ImageObj`, defined in the :mod:`sigima.objects` package).

These tools are organized in subpackages according to their purpose. The following
subpackages are available:

- :mod:`sigima.tools.checks`: Input data checks for all tools
- :mod:`sigima.tools.signal`: Signal processing tools
- :mod:`sigima.tools.image`: Image processing tools
- :mod:`sigima.tools.datatypes`: Data type conversion tools
- :mod:`sigima.tools.coordinates`: Coordinate conversion tools

Check functions
^^^^^^^^^^^^^^^

.. automodule:: sigima.tools.checks
   :members:

Signal Processing Tools
^^^^^^^^^^^^^^^^^^^^^^^

.. automodule:: sigima.tools.signal
   :members:

Image Processing Tools
^^^^^^^^^^^^^^^^^^^^^^

.. automodule:: sigima.tools.image
   :members:

Data Type Conversion Tools
^^^^^^^^^^^^^^^^^^^^^^^^^^

.. automodule:: sigima.tools.datatypes
   :members:

Coordinate Conversion Tools
^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. automodule:: sigima.tools.coordinates
   :members:

"""