Skip to content

Commit ea1e903

Browse files
committed
Fix some weird (autocorrect ?) issues
1 parent a4cdef0 commit ea1e903

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/imcflibs/imagej/labelimage.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ def relate_label_images(label_image_ref, label_image_to_relate):
7070
7171
❗ NOTE: Won't work with touching labels ❗
7272
73-
FIXME: explain with an example what the function is doing!
73+
Given two label images, this function will create a new label image
74+
with the same labels as the reference image, but with the objects
75+
of the second image.
7476
7577
Parameters
7678
----------
@@ -90,7 +92,7 @@ def relate_label_images(label_image_ref, label_image_to_relate):
9092
Prefs.blackBackground = True
9193
IJ.run(imp_dup, "Convert to Mask", "")
9294
IJ.run(imp_dup, "Divide...", "value=255")
93-
return ImageCalculator.run(label_image_ref, imp_dup, "Multimage_processorly create")
95+
return ImageCalculator.run(label_image_ref, imp_dup, "Multiply create")
9496

9597

9698
def filter_objects(label_image, table, string, min_val, max_val):

0 commit comments

Comments
 (0)