File size: 803 Bytes
67d69a3
 
 
 
 
57a96a1
67d69a3
f1ac6b9
 
 
67d69a3
 
 
 
 
 
 
 
 
57a96a1
f1ac6b9
67d69a3
 
 
 
 
a0f5d9f
67d69a3
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from PIL import Image

import torch
import torchvision.transforms as transforms

def preprocess_img_from_path(path_to_image, img_size):
    img = Image.open(path_to_image)
    return preprocess_img(img, img_size)

def preprocess_img(img: Image, img_size):
    original_size = img.size
    
    transform = transforms.Compose([
        transforms.Resize((img_size, img_size)),
        transforms.ToTensor()
    ])
    img = transform(img).unsqueeze(0)
    return img, original_size

def postprocess_img(img, original_size):
    img = img.detach().cpu().squeeze(0)
    
    # address tensor value scaling and quantization
    img = torch.clamp(img, 0, 1)
    img = img.mul(255).byte()
    
    img = transforms.ToPILImage()(img)
    img = img.resize(original_size, Image.Resampling.LANCZOS)
    return img