1 #ifndef CTL_FDKRECONSTRUCTOR_H 2 #define CTL_FDKRECONSTRUCTOR_H 4 #include "acquisition/acquisitionsetup.h" 5 #include "mat/matrix.h" 6 #include "recon/sfpbackprojector.h" 10 class AbstractProjectionFilter;
103 bool _useSFPBackprojector = false;
140 #endif // CTL_FDKRECONSTRUCTOR_H SFPBackprojector::FootprintType footprintType() const
Returns the footprint type that is used if isSFPBackprojectorInUse() returns true....
Definition: fdkreconstructor.cpp:370
bool consistencyChecks(const ProjectionDataView &projections) const
Returns true if projections are consistent with the AcquisitionSetup previously passed to configure()...
Definition: fdkreconstructor.cpp:676
void configure(const AcquisitionSetup &setup) override
Passes the AcquisitionSetup that describes the setting in which projections that shall be reconstruct...
Definition: fdkreconstructor.cpp:95
static bool isDetectorTangentialToOrbit(AcquisitionSetup &setup)
Returns true if the detector orientation for all the views defined by setup is such that its rows lay...
Definition: fdkreconstructor.cpp:624
static float estimateSID(AcquisitionSetup &setup)
Estimates the source-to-isocenter distance used in setup.
Definition: fdkreconstructor.cpp:560
bool isSFPBackprojectorInUse() const
Returns true if OCL::SFPBackprojector is in use for the backprojection operation.
Definition: fdkreconstructor.cpp:386
void useSFPBackprojector(SFPBackprojector::FootprintType footprintType=SFPBackprojector::TR)
Enables use of the OCL::SFPBackprojector for the backprojection operation.
Definition: fdkreconstructor.cpp:303
Definition: abstractprojectionfilter.h:10
void setProjectionFilter(std::unique_ptr< ProjectionFilter > projectionFilter)
Sets the projection filter to projectionFilter.
Definition: fdkreconstructor.cpp:342
The VoxelVolume class provides a simple container for storage of voxelized 3D volume data.
Definition: ctsystemview.h:14
Holds a CTSystem together with the information about the system settings for all views from which pro...
Definition: acquisitionsetup.h:175
static float estimateSDD(AcquisitionSetup &setup)
Estimates the source-to-detector distance used in setup.
Definition: fdkreconstructor.cpp:544
The ProjectionDataView class is a read-only wrapper for a reference to ProjectionData.
Definition: projectiondataview.h:51
QVariant parameter() const override
Returns the parameters of this instance as a QVariant.
Definition: fdkreconstructor.cpp:455
bool isApplicableTo(const AcquisitionSetup &setup) const override
Returns true if the reconstruction method can be applied to data whose acquisition is described by se...
Definition: fdkreconstructor.cpp:427
The AbstractReconstructor class defined the interface for reconstruction types.
Definition: abstractreconstructor.h:163
bool isSimpleBackprojectorInUse() const
Returns true if OCL::SimpleBackprojector is in use for the backprojection operation.
Definition: fdkreconstructor.cpp:397
The FDKReconstructor class implements the FDK reconstruction algorithm for reconstruction of cone-bea...
Definition: fdkreconstructor.h:64
static bool isCircularSourceOrbit(AcquisitionSetup &setup)
Returns true if the source positions in the views defined by setup can be considered to lie on a circ...
Definition: fdkreconstructor.cpp:577
bool reconstructToPlain(const ProjectionDataView &projections, VoxelVolume< float > &targetVolume) override
Reconstructs projection data projections into targetVolume and returns true on success.
Definition: fdkreconstructor.cpp:152
#define CTL_TYPE_ID(newIndex)
Definition: serializationinterface.h:189
void setRevisedParkerWeightQ(float q)
Sets the parameter 'q' for the revised Parker weighting to q.
Definition: fdkreconstructor.cpp:285
The SFPBackprojector class is an OpenCL implementation of the separable footprint approach for backpr...
Definition: sfpbackprojector.h:38
void setParameter(const QVariant ¶meter) override
Sets the parameters of this instance based on the passed QVariant parameter.
Definition: fdkreconstructor.cpp:485
float revisedParkerWeightQ() const
Returns the current 'q' value used in revised Parker weighting.
Definition: fdkreconstructor.cpp:404
The Circle3D struct represents a circle in three dimensions.
Definition: fdkreconstructor.h:124
void useSimpleBackrojector()
Enables use of the OCL::SimpleBackprojector for the backprojection operation.
Definition: fdkreconstructor.cpp:325