diff options
author | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-07-20 15:14:50 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-07-23 11:57:18 +0200 |
commit | e509cd013f691acded3dc0d87732ba5257cb0ae4 (patch) | |
tree | 20ee95929c1fd1d6b290480c64be9bc77612d25b /python/astra/PyIncludes.pxd | |
parent | d91b51f6d58003de84a9d6dd8189fceba0e81a5a (diff) | |
download | astra-e509cd013f691acded3dc0d87732ba5257cb0ae4.tar.gz astra-e509cd013f691acded3dc0d87732ba5257cb0ae4.tar.bz2 astra-e509cd013f691acded3dc0d87732ba5257cb0ae4.tar.xz astra-e509cd013f691acded3dc0d87732ba5257cb0ae4.zip |
Add ReconstructionAlgorithm2D/3D classes for plugins (matching C++ classes)
Diffstat (limited to 'python/astra/PyIncludes.pxd')
-rw-r--r-- | python/astra/PyIncludes.pxd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/astra/PyIncludes.pxd b/python/astra/PyIncludes.pxd index 909f58f..a099c31 100644 --- a/python/astra/PyIncludes.pxd +++ b/python/astra/PyIncludes.pxd @@ -62,6 +62,7 @@ cdef extern from "astra/VolumeGeometry2D.h" namespace "astra": float32 getWindowMaxX() float32 getWindowMaxY() Config* getConfiguration() + bool isEqual(CVolumeGeometry2D*) cdef extern from "astra/Float32Data2D.h" namespace "astra": cdef cppclass CFloat32CustomMemory: @@ -89,6 +90,7 @@ cdef extern from "astra/ProjectionGeometry2D.h" namespace "astra": float32 getProjectionAngle(int) float32 getDetectorWidth() Config* getConfiguration() + bool isEqual(CProjectionGeometry2D*) cdef extern from "astra/Float32Data2D.h" namespace "astra::CFloat32Data2D": cdef enum TWOEDataType "astra::CFloat32Data2D::EDataType": |