diff options
author | Wim van Aarle <wimvanaarle@gmail.com> | 2015-02-24 16:46:39 +0100 |
---|---|---|
committer | Wim van Aarle <wimvanaarle@gmail.com> | 2015-02-24 16:46:39 +0100 |
commit | 569515f3e20ef3b3c2c4a777f38f45dc67e6f9b6 (patch) | |
tree | 760c38b60558a25811a54574f7111518824d6266 /matlab/mex/mexHelpFunctions.h | |
parent | 9e48494ecc1e4655bd6c25b34bb5c53c80c30d7a (diff) | |
download | astra-569515f3e20ef3b3c2c4a777f38f45dc67e6f9b6.tar.gz astra-569515f3e20ef3b3c2c4a777f38f45dc67e6f9b6.tar.bz2 astra-569515f3e20ef3b3c2c4a777f38f45dc67e6f9b6.tar.xz astra-569515f3e20ef3b3c2c4a777f38f45dc67e6f9b6.zip |
added get_geometry for 3d projection data objects
Diffstat (limited to 'matlab/mex/mexHelpFunctions.h')
-rw-r--r-- | matlab/mex/mexHelpFunctions.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/matlab/mex/mexHelpFunctions.h b/matlab/mex/mexHelpFunctions.h index ae8acac..8b65a04 100644 --- a/matlab/mex/mexHelpFunctions.h +++ b/matlab/mex/mexHelpFunctions.h @@ -45,8 +45,12 @@ $Id$ #include "astra/ParallelProjectionGeometry2D.h" #include "astra/FanFlatProjectionGeometry2D.h" -#include "astra/VolumeGeometry2D.h" +#include "astra/ParallelProjectionGeometry3D.h" +#include "astra/ParallelVecProjectionGeometry3D.h" +#include "astra/ConeProjectionGeometry3D.h" +#include "astra/ConeVecProjectionGeometry3D.h" +#include "astra/VolumeGeometry2D.h" #include "astra/VolumeGeometry3D.h" @@ -65,10 +69,11 @@ mxArray* vectorToMxArray(std::vector<astra::float32> mInput); mxArray* anyToMxArray(boost::any _any); astra::CProjectionGeometry2D* parseProjectionGeometryStruct(const mxArray*); -mxArray* createProjectionGeometryStruct(astra::CProjectionGeometry2D*); - astra::CVolumeGeometry2D* parseVolumeGeometryStruct(const mxArray*); +mxArray* createProjectionGeometryStruct(astra::CProjectionGeometry2D*); +mxArray* createProjectionGeometryStruct(astra::CProjectionGeometry3D*); + mxArray* createVolumeGeometryStruct(astra::CVolumeGeometry2D* _pReconGeom); mxArray* createVolumeGeometryStruct(astra::CVolumeGeometry3D* _pReconGeom); |