diff options
| author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2014-12-02 14:20:46 +0100 | 
|---|---|---|
| committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2014-12-02 14:22:02 +0100 | 
| commit | b3e8338a7fa4c7ed9a5954ca02fa3126aefff530 (patch) | |
| tree | e68d4cfeb680ad2d491cc92a3efe5f9a4c9210c2 /include/astra/ProjectionGeometry3D.h | |
| parent | bdc9cc8c8c06b1bf25d24ae242cad708fc0f9b14 (diff) | |
| download | astra-b3e8338a7fa4c7ed9a5954ca02fa3126aefff530.tar.gz astra-b3e8338a7fa4c7ed9a5954ca02fa3126aefff530.tar.bz2 astra-b3e8338a7fa4c7ed9a5954ca02fa3126aefff530.tar.xz astra-b3e8338a7fa4c7ed9a5954ca02fa3126aefff530.zip | |
Add ProjectionGeometry3D::projectPoint for par3d and cone.
Par3d_vec and cone_vec to follow.
Diffstat (limited to 'include/astra/ProjectionGeometry3D.h')
| -rw-r--r-- | include/astra/ProjectionGeometry3D.h | 15 | 
1 files changed, 14 insertions, 1 deletions
| diff --git a/include/astra/ProjectionGeometry3D.h b/include/astra/ProjectionGeometry3D.h index 20ad8f3..9e7f787 100644 --- a/include/astra/ProjectionGeometry3D.h +++ b/include/astra/ProjectionGeometry3D.h @@ -298,10 +298,23 @@ public:  	 *  	 * @param _iIndex	the index of the detector.  	 * @param _iAngleIndex	output: index of angle -	 * @param _iDetectorIndex output: index of dectecor +	 * @param _iDetectorIndex output: index of detector  	 */  	virtual void indexToAngleDetectorIndex(int _iIndex, int& _iAngleIndex, int& _iDetectorIndex) const; +	/** Project a point onto the detector. The 3D point coordinates +	 * are in units. The output fU,fV are the (unrounded) indices of the +	 * detector column and row. +	 * This may fall outside of the actual detector. +	 * +	 * @param fX,fY,fZ	coordinates of the point to project +	 * @param iAngleIndex	the index of the angle to use +	 * @param fU,fV		the projected point. +	 */ +	virtual void projectPoint(float32 fX, float32 fY, float32 fZ, +	                          int iAngleIndex, +	                          float32 &fU, float32 &fV) const = 0; +  	/** Returns true if the type of geometry defined in this class is the one specified in _sType.  	 *  	 * @param _sType geometry type to compare to. | 
