Replies to the reviwer's concerns
We really appreciate it for the reviewer's comments! We will reply to the concerns and questions as follows.
### Concerns
> 1. Every clinician or experienced user is able to easily state which organ they are interested in. There is no added benefit of trying to predict which organ one refers to from a report description, this raises questions about the anatomy-informed prompt segmentation and also compromises the contribution of the RAG component that emulates clinical prompts.
We propose to handle `free form text prompt` in two aspects: **anatomy-informed** and **anatomy-agnostic**, as for this question, **anatomy-informed** is indeed to handle those scenarios that users can explicitly describe what organ they expect to segment, which is the simplest case, we generalize the use case to the diagnosis report that the complex clinical descriptions may not be reflecting specific organ name directly, such as "hydronephrosis" may refer to the "kidney" in the report. Our method can do well (as shown in the upper part of Table 2) in the simplest case this concern is about, and the RAG-based prompt generation is to enhance the ability in vague queries.
> 2. The anatomy-agnostic setting is also not useable in the current format: In every clinical setting patients are present in 3D format. Given that this method is 2D, the “largest” organ will not be consistent across all 2D slices when one does whole-volume inference. So if one wants to use this method the clinician/user would have to adapt the slices to infer or create unique prompts for unique slices, which is both very unpractical.
Our current 2D approach is an initial step towards more complex, fully integrated 3D segmentation capabilities. And the autonomy-agnostic prompts are currently specific to 2D slices, this is for the use case that non-professional practitioners want to conduct studies or understand the medical image based organ segmentations. So they could describe slice by slice descriptions on what is observed in certain presented CT scans.
> 3. Due to the proposed method being closed-set and being constrained to basic organ segmentation, any supervised model that does organ segmentation (and predicts all organs) would currently have a very similar capability, without the prior issues. The user would just have to discard all segmentations he is not interested in.
Even though the organ segmentation task itself has been an interest with multiple methods, this paper focuses on a free-form text trigger, which offers a more tailored, interactive, and context-aware solution.
> 4. Regarding canonicalization, I would like to see the prevalence of these cases. Generally, all 3D images come with meta-information in the image header that should allow to re-orient it in a canonical way already. Hence I would like to have a quantification of how often this overall occurs to convince me that this is actually a problem worth solving.
Public datasets often lack metadata due to privacy concerns, making it challenging to adjust image orientation using standard methods. Our model's canonicalization approach automatically standardizes image orientation, eliminating the need for manual intervention and enhancing operational efficiency and scalability.
> 5. Evaluation: It currently seems like the authors are only testing their capabilities in a closed-set setting. The final anatomy-informed prompts are the same as they used during training. To actually show that their method provides novel capabilities experiments where they try to predict novel classes given the text guiding could be conducted, which would greatly improve the utility of their proposed method.
Thanks for the suggestions, but the training text prompts include the RAG-based generations based on real clinical reports, while the test includes 25% expert (clinician) generated, 25% non-expert human-generated, and 50% Synthetic (RAG/GPT generated) data as shown in Fig.10.
We are willing to improve the test set and add more diverse prompts to verify the effectiveness of the natural language understanding ability of the proposed method.
> 6. Baselines: Since this is very close to supervised organ segmentation I would like to see supervised performance as reference (At least as a baseline to know where the performance is relative to a supervised 3D Model.
We have compared the `Universal Model` [1] as a baseline, in fact, most of the supervised organ segmentation method strictly requires the same format of the input label for segmentation, while these labels must be seen in the list of the training set, so we conducted the label-based segmentation (which is an easy task for our model), as shown in Table 2 (upper), our performance is better across all of the test datasets across the baselines.
[1] Liu J, Zhang Y, Chen J N, et al. Clip-driven universal model for organ segmentation and tumor detection[C]//Proceedings of the IEEE/CVF International Conference on Computer Vision. 2023: 21152-21164.