Revision 267d04db12edd1d7ee4a2a405ee26233254682f4 authored by Joost van Griethuysen on 23 May 2017, 15:16:47 UTC, committed by Joost van Griethuysen on 24 May 2017, 14:57:51 UTC
Add a C extension function to calculate maximum diameters in 2D and 3D.

Additionally, python implementation of maximum diameter can return incorrect values in some edge cases.
After discussion, we decided to remove support for python calculation of maximum diameters and have PyRadiomics return NaN when a user tries to compute these features in full-python mode.
1 parent 2184ba0
Raw File
.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