med3d
            IntensityNormalizeOneVolume
    
              Bases: Transform
A class representing an intensity normalized volume.
Methods:
| Name | Description | 
|---|---|
__call__ | 
              
                 Normalize the intensity of an n-dimensional volume based on the mean and standard deviation of the non-zero region.  | 
            
Args | 
              
                 volume (numpy.ndarray): The input n-dimensional volume.  | 
            
Returns | 
              
                 out (numpy.ndarray): The normalized n-dimensional volume.  | 
            
Source code in fmcib/transforms/med3d.py
                
            __call__(volume)
    Normalize the intensity of an nd volume based on the mean and std of the non-zero region.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                volume
             | 
            
               The input nd volume.  | 
            required | 
Returns:
| Name | Type | Description | 
|---|---|---|
out |             
               The normalized nd volume.  |