Source code for plugins.ring_removal.remove_unresponsive_and_fluctuating_rings

# 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:: remove_unresponsive_and_fluctuating_rings
   :platform: Unix
   :synopsis: Method working in the sinogram space to remove ring artifacts
    caused by dead pixels.
.. moduleauthor:: Nghia Vo <scientificsoftware@diamond.ac.uk>

"""

from savu.plugins.plugin import Plugin
from savu.plugins.driver.cpu_plugin import CpuPlugin
from savu.plugins.utils import register_plugin

import numpy as np
from scipy.ndimage import median_filter
from scipy.ndimage import binary_dilation
from scipy.ndimage import uniform_filter1d
from scipy import interpolate


[docs]@register_plugin class RemoveUnresponsiveAndFluctuatingRings(Plugin, CpuPlugin): def __init__(self): super(RemoveUnresponsiveAndFluctuatingRings, self).__init__( "RemoveUnresponsiveAndFluctuatingRings")
[docs] def setup(self): in_dataset, out_dataset = self.get_datasets() out_dataset[0].create_dataset(in_dataset[0]) in_pData, out_pData = self.get_plugin_datasets() in_pData[0].plugin_data_setup('SINOGRAM', 'single') out_pData[0].plugin_data_setup('SINOGRAM', 'single')
[docs] def detect_stripe(self, listdata, snr): """Algorithm 4 in the paper. To locate stripe positions. Parameters ---------- listdata : 1D normalized array. snr : Ratio (>1.0) used to detect stripe locations. Returns ------- listmask : 1D binary mask. """ numdata = len(listdata) listsorted = np.sort(listdata)[::-1] xlist = np.arange(0, numdata, 1.0) ndrop = np.int16(0.25 * numdata) (_slope, _intercept) = np.polyfit( xlist[ndrop:-ndrop - 1], listsorted[ndrop:-ndrop - 1], 1) numt1 = _intercept + _slope * xlist[-1] noiselevel = np.abs(numt1 - _intercept) if noiselevel == 0.0: raise ValueError( "The method doesn't work on noise-free data. If you " \ "apply the method on simulated data, please add" \ " noise!") val1 = np.abs(listsorted[0] - _intercept) / noiselevel val2 = np.abs(listsorted[-1] - numt1) / noiselevel listmask = np.zeros_like(listdata) if val1 >= snr: upper_thresh = _intercept + noiselevel * snr * 0.5 listmask[listdata > upper_thresh] = 1.0 if val2 >= snr: lower_thresh = numt1 - noiselevel * snr * 0.5 listmask[listdata <= lower_thresh] = 1.0 return listmask
[docs] def remove_large_stripe(self, matindex, sinogram, snr, size): """Algorithm 5 in the paper. To remove large stripes. Parameters ----------- sinogram : 2D array. snr : Ratio (>1.0) used to detect stripe locations. size : Window size of the median filter. Returns ------- sinogram : stripe-removed sinogram. """ badpixelratio = 0.05 (nrow, ncol) = sinogram.shape ndrop = np.int16(badpixelratio * nrow) sinosorted = np.sort(sinogram, axis=0) sinosmoothed = median_filter(sinosorted, (1, size)) list1 = np.mean(sinosorted[ndrop:nrow - ndrop], axis=0) list2 = np.mean(sinosmoothed[ndrop:nrow - ndrop], axis=0) listfact = np.divide(list1, list2, out=np.ones_like(list1), where=list2 != 0) listmask = self.detect_stripe(listfact, snr) listmask = binary_dilation(listmask, iterations=1).astype( listmask.dtype) matfact = np.tile(listfact, (nrow, 1)) sinogram = sinogram / matfact sinogram1 = np.transpose(sinogram) matcombine = np.asarray(np.dstack((matindex, sinogram1))) matsort = np.asarray( [row[row[:, 1].argsort()] for row in matcombine]) matsort[:, :, 1] = np.transpose(sinosmoothed) matsortback = np.asarray( [row[row[:, 0].argsort()] for row in matsort]) sino_corrected = np.transpose(matsortback[:, :, 1]) listxmiss = np.where(listmask > 0.0)[0] sinogram[:, listxmiss] = sino_corrected[:, listxmiss] return sinogram
[docs] def pre_process(self): in_pData = self.get_plugin_in_datasets() width_dim = \ in_pData[0].get_data_dimension_by_axis_label('detector_x') height_dim = \ in_pData[0].get_data_dimension_by_axis_label('rotation_angle') sino_shape = list(in_pData[0].get_shape()) self.width1 = sino_shape[width_dim] self.height1 = sino_shape[height_dim] listindex = np.arange(0.0, self.height1, 1.0) self.matindex = np.tile(listindex, (self.width1, 1)) self.size = np.clip(np.int16(self.parameters['size']), 1, self.width1 - 1) self.snr = np.clip(np.float32(self.parameters['snr']), 1.0, None) self.residual = self.parameters['residual']
[docs] def process_frames(self, data): sinogram = np.copy(data[0]) sinosmoothed = np.apply_along_axis(uniform_filter1d, 0, sinogram, 10) listdiff = np.sum(np.abs(sinogram - sinosmoothed), axis=0) nmean = np.mean(listdiff) listdiffbck = median_filter(listdiff, self.size) listdiffbck[listdiffbck == 0.0] = nmean listfact = listdiff / listdiffbck listmask = self.detect_stripe(listfact, self.snr) listmask = binary_dilation(listmask, iterations=1).astype( listmask.dtype) listmask[0:2] = 0.0 listmask[-2:] = 0.0 listx = np.where(listmask < 1.0)[0] listy = np.arange(self.height1) matz = sinogram[:, listx] finter = interpolate.interp2d(listx, listy, matz, kind='linear') listxmiss = np.where(listmask > 0.0)[0] if len(listxmiss) > 0: matzmiss = finter(listxmiss, listy) sinogram[:, listxmiss] = matzmiss if self.residual is True: sinogram = self.remove_large_stripe(self.matindex, sinogram, self.snr, self.size) return sinogram