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
MANIFEST.in
include CONTRIBUTING.rst
include LICENSE.txt
include README.md
include requirements.txt
include requirements-dev.txt
include requirements-setup.txt
include versioneer.py

recursive-include radiomics *

recursive-include data/baseline *
recursive-include data *_image.nrrd
recursive-include data *_label.nrrd
include data/README.md

recursive-include examples/exampleSettings *.yaml
recursive-include examples batch*.py
recursive-include examples hello*.py
include examples/testCases.csv

recursive-include tests *

recursive-include bin *.py

recursive-exclude * __pycache__
recursive-exclude * *.py[cod]
recursive-exclude * nosetests.xml
back to top