Source code for cil.processors.AbsorptionTransmissionConverter
# Copyright 2021 United Kingdom Research and Innovation# Copyright 2021 The University of Manchester## 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.## Authors:# CIL Developers, listed at: https://github.com/TomographicImaging/CIL/blob/master/NOTICE.txtfromcil.frameworkimportDataProcessor,AcquisitionData,ImageData,DataContainer,AcquisitionGeometry,ImageGeometryimportwarningsimportnumpy
[docs]classAbsorptionTransmissionConverter(DataProcessor):'''Processor to convert from absorption measurements to transmission :param white_level: A float defining incidence intensity in the Beer-Lambert law. :type white_level: float, optional :return: returns AcquisitionData, ImageData or DataContainer depending on input data type :rtype: AcquisitionData, ImageData or DataContainer Processor first multiplies data by -1, then calculates exponent and scales result by white_level (default=1) '''def__init__(self,white_level=1):kwargs={'white_level':white_level}super(AbsorptionTransmissionConverter,self).__init__(**kwargs)defcheck_input(self,data):ifnot(issubclass(type(data),DataContainer)):raiseTypeError('Processor supports only following data types:\n'+' - ImageData\n - AcquisitionData\n'+' - DataContainer')returnTruedefprocess(self,out=None):data=self.get_input()ifoutisNone:out=data.multiply(-1.0)else:data.multiply(-1.0,out=out)out.exp(out=out)out.multiply(numpy.float32(self.white_level),out=out)returnout