diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2015-03-18 16:55:00 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2015-03-18 16:55:00 +0100 |
commit | a86c7735d1dd20ec884c256950b8a9575f3ebdca (patch) | |
tree | ab4e4e47ba92618562f84a47de587878f4d34af6 /python/astra/projector.py | |
parent | 65a607967e71d68ec32f34b7cf61fd8d891cc550 (diff) | |
parent | f603045f5bb41de6bc1ffa93badd932b891f5f1d (diff) | |
download | astra-a86c7735d1dd20ec884c256950b8a9575f3ebdca.tar.gz astra-a86c7735d1dd20ec884c256950b8a9575f3ebdca.tar.bz2 astra-a86c7735d1dd20ec884c256950b8a9575f3ebdca.tar.xz astra-a86c7735d1dd20ec884c256950b8a9575f3ebdca.zip |
Merge pull request #28 from dmpelt/projector3d-python
Add projector3d and CUDA projectors to Python (to match new Matlab code)
Diffstat (limited to 'python/astra/projector.py')
-rw-r--r-- | python/astra/projector.py | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/python/astra/projector.py b/python/astra/projector.py index c916c52..e370e5a 100644 --- a/python/astra/projector.py +++ b/python/astra/projector.py @@ -27,21 +27,21 @@ from . import projector_c as p def create(config): """Create projector object. - + :param config: Projector options. :type config: :class:`dict` :returns: :class:`int` -- the ID of the constructed object. - + """ return p.create(config) def delete(ids): """Delete a projector object. - + :param ids: ID or list of ID's to delete. :type ids: :class:`int` or :class:`list` - + """ return p.delete(ids) @@ -57,22 +57,22 @@ def info(): def projection_geometry(i): """Get projection geometry of a projector. - + :param i: ID of projector. :type i: :class:`int` :returns: :class:`dict` -- projection geometry - + """ return p.projection_geometry(i) def volume_geometry(i): """Get volume geometry of a projector. - + :param i: ID of projector. :type i: :class:`int` :returns: :class:`dict` -- volume geometry - + """ return p.volume_geometry(i) @@ -88,13 +88,23 @@ def weights_projection(i, projection_index): def splat(i, row, col): return p.splat(i, row, col) +def is_cuda(i): + """Check whether a projector is a CUDA projector. + + :param i: ID of projector. + :type i: :class:`int` + :returns: :class:`bool` -- True if the projector is a CUDA projector. + + """ + return p.is_cuda(i) + def matrix(i): """Get sparse matrix of a projector. - + :param i: ID of projector. :type i: :class:`int` :returns: :class:`int` -- ID of sparse matrix. - + """ return p.matrix(i) |