| import math |
| import sys |
|
|
| import numpy as np |
| import torch |
| from tqdm import trange |
| from torchmetrics.functional.image.ssim import structural_similarity_index_measure |
|
|
| from stage1.disc.lpips import LPIPS |
| from .utils import to_torch_tensor |
|
|
|
|
| @torch.no_grad() |
| def calculate_psnr(arr1, arr2, bs, device="cuda", disable_bar: bool = True) -> float: |
| """ |
| Computes PSNR between two single images or batches of images. |
| PSNR is averaged over the batch if given as (B, C, H, W). |
| """ |
| B = arr1.shape[0] |
| n_batches = math.ceil(B / bs) |
| psnr = torch.zeros(B, device=device) |
|
|
| for i in trange(n_batches, desc="Calculating PSNR", file=sys.stdout, disable=disable_bar): |
| start_idx = i * bs |
| end_idx = min((i + 1) * bs, B) |
| |
| batch_arr1 = to_torch_tensor(arr1[start_idx:end_idx]).to(device) |
| batch_arr2 = to_torch_tensor(arr2[start_idx:end_idx]).to(device) |
| batch_mse = torch.mean((batch_arr1 - batch_arr2) ** 2, dim=[1,2,3]) |
| batch_mse = torch.clamp(batch_mse, min=1e-10) |
| batch_psnr = 20.0 * torch.log10(1 / torch.sqrt(batch_mse)) |
| psnr[start_idx:end_idx] = batch_psnr |
| return psnr.mean().item() |
|
|
|
|
| @torch.no_grad() |
| def calculate_lpips(arr1, arr2, bs, device="cuda", disable_bar: bool = True) -> float: |
| """ |
| Computes LPIPS between two single images or batches of images. |
| LPIPS is averaged over the batch if given as (B, C, H, W). |
| """ |
| B = arr1.shape[0] |
| n_batches = math.ceil(B / bs) |
| loss_fn = LPIPS().eval().to(device) |
| lpips = torch.zeros(B, device=device) |
|
|
| for i in trange(n_batches, desc="Calculating LPIPS", file=sys.stdout, disable=disable_bar): |
| start_idx = i * bs |
| end_idx = min((i + 1) * bs, B) |
| |
| batch_arr1 = (to_torch_tensor(arr1[start_idx:end_idx]).to(device) - 0.5) * 2. |
| batch_arr2 = (to_torch_tensor(arr2[start_idx:end_idx]).to(device) - 0.5) * 2. |
| batch_lpips = loss_fn(batch_arr1, batch_arr2).squeeze() |
| lpips[start_idx:end_idx] = batch_lpips |
| return lpips.mean().item() |
|
|
|
|
| |
| |
| |
| @torch.no_grad() |
| def calculate_ssim(arr1, arr2, bs, device="cuda", disable_bar: bool = True) -> float: |
| """ |
| Computes SSIM between two single images or batches of images. |
| SSIM is averaged over the batch if given as (B, C, H, W). |
| """ |
| B = arr1.shape[0] |
| n_batches = math.ceil(B / bs) |
| ssim_val = torch.zeros(B, device=device) |
|
|
| for i in trange(n_batches, desc="Calculating SSIM", file=sys.stdout, disable=disable_bar): |
| start_idx = i * bs |
| end_idx = min((i + 1) * bs, B) |
| |
| batch_arr1 = to_torch_tensor(arr1[start_idx:end_idx]).to(device) |
| batch_arr2 = to_torch_tensor(arr2[start_idx:end_idx]).to(device) |
| |
| batch_ssim = structural_similarity_index_measure( |
| target=batch_arr1, |
| preds=batch_arr2, |
| data_range=1.0, |
| reduction="none" |
| ) |
| ssim_val[start_idx:end_idx] = batch_ssim |
| return ssim_val.mean().item() |
|
|