| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- # 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
- import torch
- from torch import nn
- from kornia import metrics
- def psnr_loss(image: torch.Tensor, target: torch.Tensor, max_val: float) -> torch.Tensor:
- r"""Compute the PSNR loss.
- The loss is computed as follows:
- .. math::
- \text{loss} = -\text{psnr(x, y)}
- See :meth:`~kornia.losses.psnr` for details abut PSNR.
- Args:
- image: the input image with shape :math:`(*)`.
- target : the labels image with shape :math:`(*)`.
- max_val: The maximum value in the image tensor.
- Return:
- the computed loss as a scalar.
- Examples:
- >>> ones = torch.ones(1)
- >>> psnr_loss(ones, 1.2 * ones, 2.) # 10 * log(4/((1.2-1)**2)) / log(10)
- tensor(-20.0000)
- """
- return -1.0 * metrics.psnr(image, target, max_val)
- class PSNRLoss(nn.Module):
- r"""Create a criterion that calculates the PSNR loss.
- The loss is computed as follows:
- .. math::
- \text{loss} = -\text{psnr(x, y)}
- See :meth:`~kornia.losses.psnr` for details abut PSNR.
- Args:
- max_val: The maximum value in the image tensor.
- Shape:
- - Image: arbitrary dimensional tensor :math:`(*)`.
- - Target: arbitrary dimensional tensor :math:`(*)` same shape as image.
- - Output: a scalar.
- Examples:
- >>> ones = torch.ones(1)
- >>> criterion = PSNRLoss(2.)
- >>> criterion(ones, 1.2 * ones) # 10 * log(4/((1.2-1)**2)) / log(10)
- tensor(-20.0000)
- """
- def __init__(self, max_val: float) -> None:
- super().__init__()
- self.max_val: float = max_val
- def forward(self, image: torch.Tensor, target: torch.Tensor) -> torch.Tensor:
- return psnr_loss(image, target, self.max_val)
|