将图像读取为tensor,把tensor存为图像

图像读取为tensor

img = read_image("D:/PycharmProjects/Baseline_age_estimation_generic/FGNET_processed_256/079A04.JPG")
# Preprocess it for your chosen model
input_tensor = normalize(resize(img, (224, 224)) / 255., [0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
def img2tensor(path):
    import torchvision.transforms as transforms
    import cv2 as cv
    img = cv.imread(path)
    transf = transforms.ToTensor()
    img_tensor = transf(img)
    # print('opencv', img)
    # print('torch', img_tensor)
    return img_tensor

tensor存为图像

def tensor2img(img,name):
    from torchvision import utils as vutils
    vutils.save_image(img, name, normalize=True)
#方式二
import torchvision.utils as vutils
with torch.no_grad():
    pred = net(x)
ts = torch.squeeze(pred.clamp(0, 1).cpu())
vutils.save_image(ts, output_dir)
from PIL import Image
im = Image.fromarray(A)
im.save("your_file.jpeg")

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值