pytomography.io#

Submodules#

Package Contents#

Functions#

simind_CT_to_data(headerfile)

Opens attenuation data from SIMIND output

simind_projections_to_data(headerfile[, distance])

Obtains ObjectMeta, ImageMeta, and projections from a SIMIND header file.

simind_MEW_to_data(headerfiles[, distance])

Opens multiple projection files corresponding to the primary, lower scatter, and upper scatter windows

dicom_projections_to_data(file)

Obtains ObjectMeta, ImageMeta, and projections from a .dcm file.

dicom_CT_to_data(files_CT[, file_NM])

pytomography.io.simind_CT_to_data(headerfile)#

Opens attenuation data from SIMIND output

Parameters:

headerfile (str) – Path to header file

Returns:

Tensor containing CT data.

Return type:

torch.tensor[Lx,Ly,Lz]

pytomography.io.simind_projections_to_data(headerfile, distance='cm')#

Obtains ObjectMeta, ImageMeta, and projections from a SIMIND header file.

Parameters:
  • headerfile (str) – Path to the header file

  • distance (str, optional) – The units of measurements in the SIMIND file (this is required as input, since SIMIND uses mm/cm but doesn’t specify). Defaults to ‘cm’.

Returns:

Required information for reconstruction in PyTomography.

Return type:

(ObjectMeta, ImageMeta, torch.Tensor[1, Ltheta, Lr, Lz])

pytomography.io.simind_MEW_to_data(headerfiles, distance='cm')#

Opens multiple projection files corresponding to the primary, lower scatter, and upper scatter windows

Parameters:
  • headerfiles (list[str]) – List of file paths to required files. Must be in order of: 1. Primary, 2. Lower Scatter, 3. Upper scatter

  • distance (str, optional) – The units of measurements in the SIMIND file (this is required as input, since SIMIND uses mm/cm but doesn’t specify). Defaults to ‘cm’.

Returns:

Required information for reconstruction in PyTomography. First returned tensor contains primary data, and second returned tensor returns estimated scatter using the triple energy window method.

Return type:

(ObjectMeta, ImageMeta, torch.Tensor[1, Ltheta, Lr, Lz], torch.Tensor[1, Ltheta, Lr, Lz])

pytomography.io.dicom_projections_to_data(file)#

Obtains ObjectMeta, ImageMeta, and projections from a .dcm file.

Parameters:

file (str) – Path to the .dcm file

Returns:

Required information for reconstruction in PyTomography.

Return type:

(ObjectMeta, ImageMeta, torch.Tensor[1, Ltheta, Lr, Lz])

pytomography.io.dicom_CT_to_data(files_CT, file_NM=None)#