rockverse.dect.CalibrationMaterial.highE_gaussian_pdf#
- property CalibrationMaterial.highE_gaussian_pdf#
High energy CT attenuation Gaussian probability density function (PDF).
A tuple \((\mu, \sigma)\) with the mean and standard deviation values for a Gaussian (normal) probability density function model for high energy attenuation values:
\[y(x) = \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{1}{2}\left(\frac{x-\mu}{\sigma}\right)^2}.\]When set, gets precedence over the
highE_pdfattribute.Examples
To get the current highE Gaussian PDF:
>>> mean, std = calibration_material.highE_gaussian_pdf
To set a new highE Gaussian PDF:
>>> calibration_material.highE_gaussian_pdf = (new_mean, new_std)
To unset the highE Gaussian PDF model:
>>> calibration_material.lowE_pdf = None