rockverse.dect.CalibrationMaterial.lowE_pdf#
- property CalibrationMaterial.lowE_pdf#
Low energy CT attenuation probability density function (PDF).
This property is a two-element tuple containing: - x: The attenuation values. - y: The corresponding PDF values.
When setting the (x, y) tuple, the values for y do not need to be normalized, as data normalization will occur before being stored.
Examples
To get the current lowE PDF:
>>> x, y = calibration_material.lowE_pdf
To set a new lowE PDF:
>>> calibration_material.lowE_pdf = (new_x_values, new_y_values)
Set to None to remove:
>>> calibration_material.lowE_pdf = None