radiomics.yaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536
  1. setting:
  2. binWidth: 25
  3. label: 1
  4. interpolator: 'sitkBSpline' # This is an enumerated value, here None is not allowed
  5. resampledPixelSpacing: # This disables resampling, as it is interpreted as None, to enable it, specify spacing in x, y, z as [x, y , z]
  6. weightingNorm: # If no value is specified, it is interpreted as None
  7. voxelArrayShift: 0
  8. # Image types to use: "Original" for unfiltered image, for possible filters, see documentation.
  9. imageType:
  10. Original: {}
  11. # for dictionaries / mappings, None values are not allowed, '{}' is interpreted as an empty dictionary
  12. # Featureclasses, from which features must be calculated. If a featureclass is not mentioned, no features are calculated
  13. # for that class. Otherwise, the specified features are calculated, or, if none are specified, all are calculated (excluding redundant/deprecated features).
  14. featureClass:
  15. # redundant Compactness 1, Compactness 2 an Spherical Disproportion features are disabled by default, they can be
  16. # enabled by specifying individual feature names (as is done for glcm) and including them in the list.
  17. shape:
  18. - 'VoxelVolume' #total volume
  19. - 'MeshVolume' #volume from triangular mesh
  20. - 'SurfaceArea' #area of enclosed shape
  21. firstorder:
  22. # specifying an empty list has the same effect as specifying nothing.
  23. - 'Maximum' #SUVmax
  24. - 'Mean' #SUVmean
  25. glcm: []
  26. # Disable SumAverage by specifying all other GLCM features available
  27. # - 'Autocorrelation'
  28. # - 'JointAverage'
  29. # - 'ClusterProminence'
  30. glrlm: []
  31. # for lists none values are allowed, in this case, all features are enabled
  32. glszm: []
  33. gldm: []
  34. # contains deprecated features, but as no individual features are specified, the deprecated features are not enabled