Revision dc3068c175872060085bd94a3472e951fc027ffc authored by Joost van Griethuysen on 23 June 2020, 10:30:27 UTC, committed by Joost van Griethuysen on 23 June 2020, 10:44:35 UTC
emptyGrayLevels is used as integer indices to remove the gray levels from the matrix. However, in linux python 3.6 and 3.7, the datatype defaults to int64, which is rejected by python when trying to use this as an index. Therefore, for the datatype of emptyGrayLevels to int, preventing the IndexError.
1 parent e100f1d
Raw File
testCases.csv
ID,Image,Mask
brain1,../data/brain1_image.nrrd,../data/brain1_label.nrrd
brain2,../data/brain2_image.nrrd,../data/brain2_label.nrrd
breast1,../data/breast1_image.nrrd,../data/breast1_label.nrrd
lung1,../data/lung1_image.nrrd,../data/lung1_label.nrrd
lung2,../data/lung2_image.nrrd,../data/lung2_label.nrrd
back to top