Skip to content

Half fan CBCT reconstruction #687

@Anshika1508

Description

@Anshika1508

Hi all,
I am attempting CBCT reconstruction using python TIGRE’s OSSART algorithm, but I am consistently getting a prominent ring artifact and a diagonal streak in the reconstructed images.

Image

I am using the following geometry:

    geo= tigre.geometry_default(high_resolution=True)  # base`
    geo.DSO        = float(921)
    geo.DSD        = float(1690)
    geo.nDetector  = np.array([col_det,row_det],dtype=np.int32)
    geo.dDetector  = np.array([0.278,0.278], dtype=np.float32)
    geo.sDetector  = geo.nDetector * geo.dDetector
    geo.mode       = "cone"
    geo.angles     = angles
    n_proj = angles.size
    geo.nVoxel     = np.array([400,400,400], dtype=np.int32)
    geo.dVoxel     = np.array([1,1,1], dtype=np.float32)
    geo.sVoxel     = geo.nVoxel * geo.dVoxel
    geo.offOrigin = np.array([0, 0, 0], dtype=np.float32)
    geo.offDetector = np.array([-195,0])
    geo.rotDetector = np.array([0, 0, 0])
    geo.accuracy = 0.5
    geo.COR = `0``

Any guidance on how to refine the geometry setup or reconstruction parameters to reduce these streaks would be greatly appreciated.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions