Source code for plugins.filters.denoising.median_filter_gpu

# 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:: median_filter_gpu
   :platform: Unix
   :synopsis: A plugin to apply 2D/3D median filter (GPU)

.. moduleauthor::Daniil Kazantsev <scientificsoftware@diamond.ac.uk>

"""
from savu.plugins.filters.denoising.base_median_filter import BaseMedianFilter
from savu.plugins.driver.gpu_plugin import GpuPlugin
from savu.plugins.utils import register_plugin

import numpy as np
from larix.methods.misc_gpu import MEDIAN_FILT_GPU


[docs]@register_plugin class MedianFilterGpu(BaseMedianFilter, GpuPlugin): def __init__(self): super(MedianFilterGpu, self).__init__('MedianFilterGpu') self.GPU_index = None self.res = False self.start = 0
[docs] def process_frames(self, data): input_temp = data[0] indices = np.where(np.isnan(input_temp)) input_temp[indices] = 0.0 input_temp = np.swapaxes(input_temp, 0, 1) result = MEDIAN_FILT_GPU(input_temp.copy(order='C'), self.parameters['kernel_size']) return np.swapaxes(result, 0, 1)
[docs] def set_options(self, cfg): return cfg