Source code for plugins.reconstructions.scikitimage_sart

# Copyright 2014 Diamond Light Source Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""
.. module:: scikitimage_sart
   :platform: Unix
   :synopsis: Wrapper for scikitimage SART function

"""

import logging
from savu.plugins.reconstructions.base_recon import BaseRecon
from savu.plugins.driver.cpu_plugin import CpuPlugin

import skimage.transform as transform
import numpy as np
from scipy import ndimage

from savu.plugins.utils import register_plugin


[docs]@register_plugin class ScikitimageSart(BaseRecon, CpuPlugin): def __init__(self): logging.debug("initialising Scikitimage SART") logging.debug("Calling super to make sure that all superclasses are " + " initialised") super(ScikitimageSart, self).__init__("ScikitimageSart") def _shift(self, sinogram, centre_of_rotation): centre_of_rotation_shift = \ (sinogram.shape[0] // 2) - float(centre_of_rotation) return ndimage.interpolation.shift(sinogram, centre_of_rotation_shift)
[docs] def process_frames(self, data): sino = data[0] centre_of_rotations, angles, vol_shape, init = self.get_frame_params() in_pData = self.get_plugin_in_datasets()[0] sinogram = np.swapaxes(sino, 0, 1) sinogram = self._shift(sinogram, centre_of_rotations) sino = sinogram.astype(np.float64) dim_detX = in_pData.get_data_dimension_by_axis_label('x', contains=True) size = self.parameters['output_size'] size = in_pData.get_shape()[dim_detX] if size == 'auto' or \ size is None else size result = \ transform.iradon(sino, theta=angles, output_size=size, filter_name=self.parameters['filter'], interpolation=self.parameters['interpolation'], circle=self.parameters['circle']) for i in range(self.parameters["iterations"]): print("Iteration %i" % i) result = transform.iradon_sart(sino, theta=angles, image=result, projection_shifts=None, clip=self.parameters['clip'], relaxation=\ self.parameters['relaxation']) return result
[docs] def get_max_frames(self): return 'single'