-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR #370 | Add image pair operation widget/task/functionals/docs
- Loading branch information
Showing
12 changed files
with
423 additions
and
15 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
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,41 +1,45 @@ | ||
# Import and export tasks | ||
# Data Processing Tasks | ||
|
||
## Gaussian smoothing task | ||
## Image Preprocessing Tasks | ||
|
||
### Gaussian smoothing task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.gaussian_smoothing_task | ||
|
||
## Image cropping task | ||
### Image cropping task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.image_cropping_task | ||
|
||
|
||
## Image rescale to shape task | ||
### Image rescale to shape task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.image_rescale_to_shape_task | ||
|
||
|
||
## Image rescale to voxel size task | ||
### Image rescale to voxel size task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.image_rescale_to_voxel_size_task | ||
|
||
## Set image voxel size task | ||
### Set image voxel size task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.set_voxel_size_task | ||
|
||
## Label Postprocessing | ||
## Image pair operation task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.image_pair_operation_task | ||
|
||
## Label Postprocessing Tasks | ||
|
||
## Remove false positives task | ||
### Remove false positives task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.remove_false_positives_by_foreground_probability_task | ||
|
||
## Fix Over/Under segmentation task | ||
### Fix Over/Under segmentation task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.fix_over_under_segmentation_from_nuclei_task | ||
|
||
## Set biggest object as background task | ||
### Set biggest object as background task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.set_biggest_instance_to_zero_task | ||
|
||
## Relabel task | ||
### Relabel task | ||
|
||
::: plantseg.tasks.dataprocessing_tasks.relabel_segmentation_task |
10 changes: 10 additions & 0 deletions
10
docs/snippets/napari/dataprocessing/image_pair_operations.py
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,10 @@ | ||
import sys | ||
|
||
sys.path.append("docs/snippets") | ||
|
||
from napari_widgets_render import render_widget | ||
|
||
from plantseg.viewer_napari.widgets import widget_image_pair_operations | ||
|
||
html = render_widget(widget_image_pair_operations) | ||
print(html) |
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
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.