-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
194 changed files
with
4,461 additions
and
1,897 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
global-include *.pyx | ||
global-include *.pxd | ||
include package/PartSeg/utils/distance_in_structure/*.h | ||
include package/PartSeg/utils/multiscale_opening/*.h | ||
include package/PartSegCore/distance_in_structure/*.h | ||
include package/PartSegCore/multiscale_opening/*.h | ||
include Readme.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
PartSegCore.analysis | ||
==================== | ||
|
||
This module contains all utils specific for segmentation analysis task | ||
|
||
PartSegCore.analysis.algorithm_description | ||
--------------------------------------------------- | ||
|
||
.. automodule:: PartSegCore.analysis.algorithm_description | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
PartSegCore.analysis.batch_processing | ||
===================================== | ||
|
||
This module contains utils for parallel batch processing | ||
|
||
PartSegCore.analysis.batch_processing.batch_backend | ||
--------------------------------------------------- | ||
|
||
.. automodule:: PartSegCore.analysis.batch_processing.batch_backend | ||
:members: | ||
:show-inheritance: | ||
|
||
|
||
PartSegCore.analysis.batch_processing.parallel_backend | ||
------------------------------------------------------ | ||
|
||
.. automodule:: PartSegCore.analysis.batch_processing.parallel_backend | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
PartSegCore.analysis.calculation_plan | ||
===================================== | ||
|
||
|
||
.. automodule:: PartSegCore.analysis.calculation_plan | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
PartSegCore base | ||
================ | ||
|
||
On this page there are described base classes of PartSegCore module | ||
|
||
.algorithm_describe_base | ||
------------------------ | ||
.. automodule:: PartSegCore.algorithm_describe_base | ||
:members: | ||
|
||
.channel_class | ||
-------------- | ||
.. automodule:: PartSegCore.channel_class | ||
:members: | ||
:show-inheritance: | ||
|
||
.image_operations | ||
----------------- | ||
.. automodule:: PartSegCore.image_operations | ||
:members: | ||
:show-inheritance: | ||
|
||
.json_hooks | ||
----------- | ||
.. automodule:: PartSegCore.json_hooks | ||
:members: | ||
:show-inheritance: | ||
|
||
|
||
.mask_create | ||
------------ | ||
.. automodule:: PartSegCore.mask_create | ||
:members: | ||
:show-inheritance: | ||
|
||
|
||
.register | ||
--------- | ||
.. automodule:: PartSegCore.register | ||
:members: | ||
|
||
.. data:: base_class_dict | ||
|
||
dict with base class for given type of algorithm, keys are :py:class:`RegisterEnum` members | ||
|
||
|
||
.mask_partition_utils | ||
--------------------- | ||
|
||
.. automodule:: PartSegCore.mask_partition_utils | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
PartSegCore.color_image | ||
======================= | ||
|
||
This module contains utils needed for transform multichannel image to RGB | ||
|
||
.. automodule:: PartSegCore.color_image | ||
:members: | ||
:inherited-members: | ||
:show-inheritance: | ||
|
||
.. py:data:: resolution | ||
Constraint equal to 1024. This is information with which accuracy the colormaps are prepared. | ||
1024 means that there will interpolated to 1024 values. | ||
|
||
.. py:data:: default_colormap_dict | ||
Dict with default colormaps avaliable in PartSeg. | ||
|
||
a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
PartSegCore.distance_in_structure | ||
================================= | ||
|
||
.find_split | ||
----------- | ||
|
||
.. automodule:: PartSegCore.distance_in_structure.find_split | ||
:members: | ||
|
||
.euclidean_cython | ||
----------------- | ||
|
||
.. automodule:: PartSegCore.distance_in_structure.euclidean_cython | ||
:members: | ||
|
||
.fuzzy_distance | ||
--------------- | ||
|
||
.. automodule:: PartSegCore.distance_in_structure.fuzzy_distance | ||
:members: | ||
|
||
.path_sprawl_cython | ||
------------------- | ||
|
||
.. automodule:: PartSegCore.distance_in_structure.path_sprawl_cython | ||
:members: | ||
|
||
.sprawl_utils | ||
------------- | ||
|
||
.. automodule:: PartSegCore.distance_in_structure.sprawl_utils | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
PartSegCore | ||
=========== | ||
|
||
This package contains calculation backend of PartSeg | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
|
||
base | ||
color_image | ||
distance_in_structure | ||
segmentation | ||
analysis/base | ||
analysis/batch_processing | ||
analysis/calculation_plan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
PartSegCore.segmentation | ||
========================== | ||
Here we describe base classes for segmentation | ||
|
||
Base classes | ||
------------------------ | ||
.. automodule:: PartSegCore.segmentation | ||
:members: | ||
:inherited-members: | ||
:show-inheritance: | ||
|
||
.sprawl | ||
------- | ||
|
||
.. automodule:: PartSegCore.segmentation.sprawl | ||
:members: | ||
:inherited-members: | ||
:show-inheritance: | ||
|
||
.restartable_segmentation_algorithms | ||
------------------------------------ | ||
|
||
.. automodule:: PartSegCore.segmentation.restartable_segmentation_algorithms | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.