Skip to content

Commit b0a9f75

Browse files
committed
update example inputs in README.md for consistency with segmentation algorithms
1 parent 05f9c69 commit b0a9f75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Example:
5656
```sh
5757
# continue from previous shell
5858
python fusion_run \
59-
-inputs /path/to/seg_algo_1.nii.gz,/path/to/seg_algo_2.nii.gz,/path/to/seg_algo_3.nii.gz \
59+
-inputs /path/to/seg_algo_0.nii.gz,/path/to/seg_algo_1.nii.gz,/path/to/seg_algo_2.nii.gz \
6060
-classes 0,1,2,4 \
6161
-method STAPLE \
6262
-output /path/to/seg_fusion.nii.gz
@@ -69,8 +69,8 @@ python fusion_run \
6969
import SimpleITK as sitk
7070
from LabelFusion.wrapper import fuse_images
7171

72-
label_to_fuse_0 = '/path/to/image_0.nii.gz'
73-
label_to_fuse_1 = '/path/to/image_1.nii.gz'
72+
label_to_fuse_0 = '/path/to/seg_algo_0.nii.gz'
73+
label_to_fuse_1 = '/path/to/seg_algo_1.nii.gz'
7474

7575
images_to_fuse = []
7676
images_to_fuse.append(sitk.ReadImage(label_to_fuse_0, sitk.sitkUInt8))

0 commit comments

Comments
 (0)