62
62
"interpolator" : "sitkNearestNeighbor" ,
63
63
"verbose" : True ,
64
64
"removeOutliers" : 10000 ,
65
+ "normalizeImage" : False ,
66
+ "normalizeScale" : None ,
65
67
}
66
68
67
69
@@ -433,9 +435,6 @@ def compute_radiomics(
433
435
interpolator = settings .get ("interpolator" )
434
436
resample_pixel_spacing = settings .get ("resampledPixelSpacing" )
435
437
436
- resample_pixel_spacing = list (image .GetSpacing ())
437
- settings ["resampledPixelSpacing" ] = resample_pixel_spacing
438
-
439
438
if resample_to_image :
440
439
resample_pixel_spacing = list (image .GetSpacing ())
441
440
settings ["resampledPixelSpacing" ] = resample_pixel_spacing
@@ -448,6 +447,18 @@ def compute_radiomics(
448
447
logger .error ("Error during resampling" )
449
448
continue
450
449
450
+ # Add normalisation of image after resampling
451
+ normalize_image = settings .get ("normalizeImage" )
452
+ normalize_scale = settings .get ("normalizeScale" )
453
+
454
+ if normalize_image is not False and normalize_scale is not None :
455
+ try :
456
+ image = imageoperations .normalizeImage (image , ** settings )
457
+ except ValueError as e :
458
+ logger .exception (e )
459
+ logger .error ("Error during nomalisation" )
460
+ continue
461
+
451
462
df_contour = pd .DataFrame ()
452
463
453
464
for rad in radiomics :
@@ -512,6 +523,21 @@ def compute_radiomics(
512
523
if col_key not in meta_data_cols :
513
524
meta_data_cols .append (col_key )
514
525
526
+ #add normalisation and resampling details
527
+ output_frame .insert (
528
+ loc = 0 , column = "NormalisationScale" , value = settings ["normalizeScale" ]
529
+ )
530
+ if settings ["resampledPixelSpacing" ] is not None :
531
+ output_frame .insert (
532
+ loc = 0 ,column = "ResampledPixelSpacing" ,
533
+ value = settings ["resampledPixelSpacing" ][0 ]
534
+ )
535
+ else :
536
+ output_frame .insert (
537
+ loc = 0 , column = "ResampledPixelSpacing" ,
538
+ value = settings ["resampledPixelSpacing" ]
539
+ )
540
+
515
541
output_frame .insert (loc = 0 , column = "StructHashedUID" , value = struct_row .hashed_uid )
516
542
output_frame .insert (loc = 0 , column = "ImageHashedUID" , value = img_row .hashed_uid )
517
543
output_frame .insert (loc = 0 , column = "Patient" , value = struct_row .patient_id )
0 commit comments