| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- # LICENSE HEADER MANAGED BY add-license-header
- #
- # Copyright 2018 Kornia Team
- #
- # 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.
- #
- from __future__ import annotations
- from typing import Optional, Sequence
- import torch
- import torch.nn.functional as F
- from torch import nn
- # Based on:
- # https://github.com/psyrocloud/MS-SSIM_L1_LOSS
- class MS_SSIMLoss(nn.Module):
- r"""Creates a criterion that computes MSSIM + L1 loss.
- According to [1], we compute the MS_SSIM + L1 loss as follows:
- .. math::
- \text{loss}(x, y) = \alpha \cdot \mathcal{L_{MSSIM}}(x,y)+(1 - \alpha) \cdot G_\alpha \cdot \mathcal{L_1}(x,y)
- Where:
- - :math:`\alpha` is the weight parameter.
- - :math:`x` and :math:`y` are the reconstructed and true reference images.
- - :math:`\mathcal{L_{MSSIM}}` is the MS-SSIM loss.
- - :math:`G_\alpha` is the sigma values for computing multi-scale SSIM.
- - :math:`\mathcal{L_1}` is the L1 loss.
- Reference:
- [1]: https://research.nvidia.com/sites/default/files/pubs/2017-03_Loss-Functions-for/NN_ImgProc.pdf#page11
- Args:
- sigmas: gaussian sigma values.
- data_range: the range of the images.
- K: k values.
- alpha : specifies the alpha value
- compensation: specifies the scaling coefficient.
- reduction : Specifies the reduction to apply to the
- output: ``'none'`` | ``'mean'`` | ``'sum'``. ``'none'``: no reduction will be applied,
- ``'mean'``: the sum of the output will be divided by the number of elements
- in the output, ``'sum'``: the output will be summed.
- Returns:
- The computed loss.
- Shape:
- - Input1: :math:`(N, C, H, W)`.
- - Input2: :math:`(N, C, H, W)`.
- - Output: :math:`(N, H, W)` or scalar if reduction is set to ``'mean'`` or ``'sum'``.
- Examples:
- >>> input1 = torch.rand(1, 3, 5, 5)
- >>> input2 = torch.rand(1, 3, 5, 5)
- >>> criterion = kornia.losses.MS_SSIMLoss()
- >>> loss = criterion(input1, input2)
- """
- def __init__(
- self,
- sigmas: Sequence[float] = (0.5, 1.0, 2.0, 4.0, 8.0),
- data_range: float = 1.0,
- K: tuple[float, float] = (0.01, 0.03),
- alpha: float = 0.025,
- compensation: float = 200.0,
- reduction: str = "mean",
- ) -> None:
- super().__init__()
- self.DR: float = data_range
- self.C1: float = (K[0] * data_range) ** 2
- self.C2: float = (K[1] * data_range) ** 2
- self.pad = int(2 * sigmas[-1])
- self.alpha: float = alpha
- self.compensation: float = compensation
- self.reduction: str = reduction
- # Set filter size
- filter_size = int(4 * sigmas[-1] + 1)
- g_masks = torch.zeros((3 * len(sigmas), 1, filter_size, filter_size))
- # Compute mask at different scales
- for idx, sigma in enumerate(sigmas):
- g_masks[3 * idx + 0, 0, :, :] = self._fspecial_gauss_2d(filter_size, sigma)
- g_masks[3 * idx + 1, 0, :, :] = self._fspecial_gauss_2d(filter_size, sigma)
- g_masks[3 * idx + 2, 0, :, :] = self._fspecial_gauss_2d(filter_size, sigma)
- self.register_buffer("_g_masks", g_masks)
- def _fspecial_gauss_1d(
- self, size: int, sigma: float, device: Optional[torch.device] = None, dtype: Optional[torch.dtype] = None
- ) -> torch.Tensor:
- """Create 1-D gauss kernel.
- Args:
- size: the size of gauss kernel.
- sigma: sigma of normal distribution.
- device: device to store the result on.
- dtype: dtype of the result.
- Returns:
- 1D kernel (size).
- """
- coords = torch.arange(size, device=device, dtype=dtype)
- coords -= size // 2
- g = torch.exp(-(coords**2) / (2 * sigma**2))
- g /= g.sum()
- return g.reshape(-1)
- def _fspecial_gauss_2d(
- self, size: int, sigma: float, device: Optional[torch.device] = None, dtype: Optional[torch.dtype] = None
- ) -> torch.Tensor:
- """Create 2-D gauss kernel.
- Args:
- size: the size of gauss kernel.
- sigma: sigma of normal distribution.
- device: device to store the result on.
- dtype: dtype of the result.
- Returns:
- 2D kernel (size x size).
- """
- gaussian_vec = self._fspecial_gauss_1d(size, sigma, device, dtype)
- return torch.outer(gaussian_vec, gaussian_vec)
- def forward(self, img1: torch.Tensor, img2: torch.Tensor) -> torch.Tensor:
- """Compute MS_SSIM loss.
- Args:
- img1: the predicted image with shape :math:`(B, C, H, W)`.
- img2: the target image with a shape of :math:`(B, C, H, W)`.
- Returns:
- Estimated MS-SSIM_L1 loss.
- """
- if not isinstance(img1, torch.Tensor):
- raise TypeError(f"Input type is not a torch.Tensor. Got {type(img1)}")
- if not isinstance(img2, torch.Tensor):
- raise TypeError(f"Output type is not a torch.Tensor. Got {type(img2)}")
- if not len(img1.shape) == len(img2.shape):
- raise ValueError(f"Input shapes should be same. Got {type(img1)} and {type(img2)}.")
- g_masks: torch.Tensor = torch.jit.annotate(torch.Tensor, self._g_masks)
- CH: int = img1.shape[-3]
- mux = F.conv2d(img1, g_masks, groups=CH, padding=self.pad)
- muy = F.conv2d(img2, g_masks, groups=CH, padding=self.pad)
- mux2 = mux * mux
- muy2 = muy * muy
- muxy = mux * muy
- sigmax2 = F.conv2d(img1 * img1, g_masks, groups=CH, padding=self.pad) - mux2
- sigmay2 = F.conv2d(img2 * img2, g_masks, groups=CH, padding=self.pad) - muy2
- sigmaxy = F.conv2d(img1 * img2, g_masks, groups=CH, padding=self.pad) - muxy
- lc = (2 * muxy + self.C1) / (mux2 + muy2 + self.C1)
- cs = (2 * sigmaxy + self.C2) / (sigmax2 + sigmay2 + self.C2)
- lM = lc[:, -1, :, :] * lc[:, -2, :, :] * lc[:, -3, :, :]
- PIcs = cs.prod(dim=1)
- # Compute MS-SSIM loss
- loss_ms_ssim = 1 - lM * PIcs
- # TODO: pass pointer to function e.g. to make more custom with mse, cosine, etc.
- # Compute L1 loss
- loss_l1 = F.l1_loss(img1, img2, reduction="none")
- # Compute average l1 loss in 3 channels
- gaussian_l1 = F.conv2d(loss_l1, g_masks[-CH:], groups=CH, padding=self.pad).mean(1)
- # Compute MS-SSIM + L1 loss
- loss = self.alpha * loss_ms_ssim + (1 - self.alpha) * gaussian_l1 / self.DR
- loss = self.compensation * loss
- if self.reduction == "mean":
- loss = torch.mean(loss)
- elif self.reduction == "sum":
- loss = torch.sum(loss)
- elif self.reduction == "none":
- pass
- else:
- raise NotImplementedError(f"Invalid reduction mode: {self.reduction}")
- return loss
|