rockverse.dualenergyct.CalibrationMaterial.highE_pdf#

property CalibrationMaterial.highE_pdf#

High 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.highE_pdf

To set a new lowE PDF:

>>> calibration_material.highE_pdf = (new_x_values, new_y_values)