-
Notifications
You must be signed in to change notification settings - Fork 64
Description
Hi,
First of all, I'd like to say that I'm a new user of dcmqi. So I might be doing something wrong, however, let me explain the issue I'm having below:
I have a White Matter Lesion Segmentation algorithm and I'd like to convert its outputs, both the segmentation lesion mask and the segmentation lesion labels, to DICOM Seg.
When I convert the lesion mask (which is a mask of 0s and 1s only) the conversion is done successfully, and its properties can be successfully extracted with standard neuroimaging processing tools such us mrtrix or dcm2niix. However, if I do the same with the labels (which range from 0 to 44 in this particular case - one label per lesion), the conversion is also successfully but the aforementioned tools are not able to extract the image properties correctly. For example, mrtrix does not work and dcm2niix assumes there are 11264 slices!!! which correspond to 256 (actual slices) * 44 = 11264.
I know that dcm2niix works pretty well with multiframe DICOM data, so this surprised me. This i why I'd like to ask what should be the expected dimensions of my converted volume?
[192, 256, 11264] or [192. 256, 256, 44]
Thank you in advance.