You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added top-level .rst files for a bunch of packages/modules that should be autodoc'ed.
- Fixed places where things didn't generate correctly.
- Added top-level constructs to starfish.morphology
- Fixed inadvertent copy-pasta in `starfish/core/types/_constants.py`
Test plan: make docs-html lint mypy
starfish provides a variety of methods to perform transformations on morphological data. These include :py:class:`~starfish.morphology.Binarize`, which transform image data into morphological data and
7
+
:py:class:`~starfish.morphology.Filter`, which performs filtering operations on morphological data.
8
+
9
+
10
+
.. _binarize:
11
+
12
+
Binarize
13
+
--------
14
+
15
+
Binarizing operations can be imported using ``starfish.morphology.Binarize``, which registers all classes that subclass :py:class:`~starfish.morphology.Binarize.BinarizeAlgorithm`:
16
+
17
+
.. code-block:: python
18
+
19
+
from starfish.morphology import Binarize
20
+
21
+
.. automodule:: starfish.morphology.Binarize
22
+
:members:
23
+
24
+
.. _morphological_filter:
25
+
26
+
Filter
27
+
------
28
+
29
+
Filtering operations can be imported using ``starfish.morphology.Filter``, which registers all classes that subclass :py:class:`~starfish.morphology.Filter.FilterAlgorithm`:
0 commit comments