djoerch / pytorch-ssim-3D

pytorch structural similarity (SSIM) loss for 3D images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pytorch-ssim for 3D images

Implementation of pytorch SSIM loss for 3D images based on Po-Hsun-Su's Repository

Example

basic usage

import pytorch_ssim
import torch
from torch.autograd import Variable

img1 = Variable(torch.rand(1, 1, 256, 256, 256))
img2 = Variable(torch.rand(1, 1, 256, 256, 256))

if torch.cuda.is_available():
    img1 = img1.cuda()
    img2 = img2.cuda()

print(pytorch_ssim.ssim3D(img1, img2))

ssim_loss = pytorch_ssim.SSIM3D(window_size = 11)

print(ssim_loss(img1, img2))

About

pytorch structural similarity (SSIM) loss for 3D images

License:Other


Languages

Language:Python 100.0%