Should we use the optimal frame mask or the whole case masks for evaluation? ¶
By: lcchen on July 7, 2024, 9:32 a.m.
Based on my understanding, we only need to input the optimal frame index (int) and its corresponding mask (.mha) for metric evalution. However, in evaluate.py
from evaluation repo (line 118-123), fetal_abdomen_frame_number is used to extract one frame from the output segmentation mask (840 frames .mha) and I met indexing bugs when I only provide the optimal frame mask (1 frame .mha) with its frame index. It seems unreasonable and increases the memory overheads during the evaluation.
Is my understanding correct? Thank you very much.