-
Hi, I am evaluating various dicom labeling solutions, and MONAI looks interesting because of its active development and because it is used/mentioned with many cloud providers. In the multi-user setup, is it possible to have per-user labels, and then to define a specific label to be used for an image during training? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Can you explain more about "per-user labels". MONAI and MONAI Label apps and models can have customized/specific labels and the created/annotated datasets can be used for training. Multiple-users can work on same image and continue to annotate until the final segmentation/label is done and saved to dicom-web. |
Beta Was this translation helpful? Give feedback.
-
The requirement is that you will need multiple-users to work on same image. 1. One label per image. Multiple users annotating/updating the same label for an image. In summary, if you want to do dataset version control for same image labels, you will need some customization and code changes. otherwise, it's totally ok if multiple users work on different images in the dataset. |
Beta Was this translation helpful? Give feedback.
The requirement is that you will need multiple-users to work on same image.
Ok, I feel you will need some label version management logic to meet your requirements:
1. One label per image. Multiple users annotating/updating the same label for an image.
Yes. Once one user finished annotation, save it as the "original" label, and then the second user can see and load the "original" label to continue to annotate. Once all users finish annotation, the label can be saved to "final" for training. This can be achieved, just be aware of the label version control, if two users save label at the same time, one of the labels may be overridden if there is no version control logic.
2. One label per ima…