Algorithms: the algorithm
module
- astra.algorithm.create(config)[source]
Create algorithm object.
- Parameters:
config (
dict
) – Algorithm options.- Returns:
int
– the ID of the constructed object.
- astra.algorithm.delete(ids)[source]
Delete a matrix object.
- Parameters:
ids (
int
orlist
) – ID or list of ID’s to delete.
- astra.algorithm.get_plugin_object(i)[source]
Return the Python object instance of a plugin algorithm.
- Parameters:
i (
int
) – ID of object corresponding to a plugin algorithm.- Returns:
The Python object instance of the plugin algorithm.