https://github.com/Radiomics/pyradiomics
Revision 214b848e37c72c6fa1d67495d2bff61c09f0a571 authored by Andrey Fedorov on 01 August 2017, 22:53:09 UTC, committed by Andrey Fedorov on 01 August 2017, 23:02:10 UTC
It appears that the presence of this attribute in settings causes feature
calculation failure in https://github.com/Radiomics/SlicerRadiomics/pull/26
1 parent c1eb7ec
Raw File
Tip revision: 214b848e37c72c6fa1d67495d2bff61c09f0a571 authored by Andrey Fedorov on 01 August 2017, 22:53:09 UTC
BUG: remove inputImage from settings
Tip revision: 214b848
.editorconfig
# EditorConfig: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[**]
end_of_line = lf
insert_final_newline = true

# Set default charset
[**.py]
indent_style = space
indent_size = 2
charset = utf-8

# Set indentation for C
[**.{c,h}]
indent_style = space
indent_size = 2

# Tab indentation (no size specified)
[**CMakeLists.txt]
indent_style = space
indent_size = 2
back to top