radiomics_SUV4.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. resegmentRange: [4] #only take values of 4 or more
  9. # Image types to use: "Original" for unfiltered image, for possible filters, see documentation.
  10. imageType:
  11. Original: {}
  12. # for dictionaries / mappings, None values are not allowed, '{}' is interpreted as an empty dictionary
  13. # Featureclasses, from which features must be calculated. If a featureclass is not mentioned, no features are calculated
  14. # for that class. Otherwise, the specified features are calculated, or, if none are specified, all are calculated (excluding redundant/deprecated features).
  15. featureClass:
  16. # redundant Compactness 1, Compactness 2 an Spherical Disproportion features are disabled by default, they can be
  17. # enabled by specifying individual feature names (as is done for glcm) and including them in the list.
  18. shape:
  19. - 'VoxelVolume' #total volume
  20. - 'MeshVolume' #volume from triangular mesh
  21. - 'SurfaceArea' #area of enclosed shape
  22. firstorder:
  23. # specifying an empty list has the same effect as specifying nothing.
  24. - 'Maximum' #SUVmax
  25. - 'Mean' #SUVmean
  26. glcm: []
  27. # Disable SumAverage by specifying all other GLCM features available
  28. # - 'Autocorrelation'
  29. # - 'JointAverage'
  30. # - 'ClusterProminence'
  31. glrlm: []
  32. # for lists none values are allowed, in this case, all features are enabled
  33. glszm: []
  34. gldm: []
  35. # contains deprecated features, but as no individual features are specified, the deprecated features are not enabled