We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2097e4 commit ef26aa6Copy full SHA for ef26aa6
src/scip/segmentation/__init__.py
@@ -32,9 +32,9 @@ def segment(
32
if settings["substract"] is not None:
33
images = images.map(
34
_substract_mask,
35
- left_index=settings["left_index"],
36
- right_index=settings["right_index"],
37
- for_channel_index=settings["for_channel_index"]
+ left_index=settings["substract"]["left_index"],
+ right_index=settings["substract"]["right_index"],
+ for_channel_index=settings["substract"]["for_index"]
38
)
39
40
group_keys = loader_module.get_group_keys()
test/data/scip_tiff_seg.yml
@@ -20,6 +20,7 @@ segment:
20
cell_diameter:
21
parent_channel_index: 1
22
dapi_channel_index: 0
23
+ substract:
24
export: false
25
mask:
26
filter:
0 commit comments