tfmri.metrics.SSIMMultiscale
tfmri.metrics.SSIMMultiscale¶
- class SSIMMultiscale(*args, **kwargs)[source]¶
Bases:
tensorflow_mri.python.metrics.iqa_metrics.MeanMetricWrapperIQAMultiscale structural similarity index (MS-SSIM) metric.
- Parameters
max_val – The dynamic range of the images (i.e., the difference between the maximum and the minimum allowed values). Defaults to 1 for floating point input images and
MAXfor integer input images, whereMAXis the largest positive representable number for the data type.power_factors – A list of weights for each of the scales. The length of the list determines the number of scales. Index 0 is the unscaled resolution’s weight and each increasing scale corresponds to the image being downsampled by 2. Defaults to (0.0448, 0.2856, 0.3001, 0.2363, 0.1333), which are the values obtained in the original paper 1.
filter_size – The size of the Gaussian filter. Defaults to 11.
filter_sigma – The standard deviation of the Gaussian filter. Defaults to 1.5.
k1 – Factor used to calculate the regularization constant for the luminance term, as
C1 = (k1 * max_val) ** 2. Defaults to 0.01.k2 – Factor used to calculate the regularization constant for the contrast term, as
C2 = (k2 * max_val) ** 2. Defaults to 0.03.batch_dims –
An int. The number of batch dimensions in input images. If None, it is inferred from inputs and
image_dimsas(rank of inputs) - image_dims - 1. Ifimage_dimsis also None, thenbatch_dimsdefaults to 1.batch_dimscan always be inferred ifimage_dimswas specified, so you only need to provide one of the two.image_dims –
An int. The number of spatial dimensions in input images. If None, it is inferred from inputs and
batch_dimsas(rank of inputs) - batch_dims - 1. Defaults to None.image_dimscan always be inferred ifbatch_dimswas specified, so you only need to provide one of the two.rank –
An int. The number of spatial dimensions. Must be 2 or 3. Defaults to
tf.rank(y_true) - 2. In other words, if rank is not explicitly set,y_trueandy_predshould have shape[batch, height, width, channels]if processing 2D images or[batch, depth, height, width, channels]if processing 3D images.multichannel – A boolean. Whether multichannel computation is enabled. If False, the inputs
y_trueandy_predare not expected to have a channel dimension, i.e. they should have shapebatch_shape + [height, width](2D) orbatch_shape + [depth, height, width](3D).complex_part – The part of a complex input to be used in the computation of the metric. Must be one of
'real','imag','abs'or'angle'. Note that real and imaginary parts, as well as angles, will be scaled to avoid negative numbers.name – String name of the metric instance.
dtype – Data type of the metric result.
References
- 1
Wang, Z., Simoncelli, E. P., & Bovik, A. C. (2003, November). Multiscale structural similarity for image quality assessment. In The Thrity-Seventh Asilomar Conference on Signals, Systems & Computers, 2003 (Vol. 2, pp. 1398-1402). Ieee.
DEPRECATED FUNCTION ARGUMENTS
Deprecated: SOME ARGUMENTS ARE DEPRECATED:
(rank). They will be removed after 2022-09-01. Instructions for updating: Use argumentimage_dimsinstead.