python-医学图像处理:图像长短边等比例缩放并填零补成正方形

图像长短边等比例缩放并填零补成正方形

代码说明:将图像长边缩放至固定尺寸,并将短边等比例缩放,空出部分两边对称填零,补成正方形。

注意:本代码仅可用于处理灰度图。

代码:

import os
import numpy as np
from PIL import Image


def img_pad(pil_file):
    w, h = pil_file.size
    fixed_size = 1024  # 输出正方形图片的尺寸

    if h >= w:
        factor = h / float(fixed_size)
        new_w = int(w / factor)
        if new_w % 2 != 0:
            new_w -= 1
        pil_file = pil_file.resize((new_w, fixed_size))
        pad_w = int((fixed_size - new_w) / 2)
        array_file = np.array(pil_file)
        array_file = np.pad(array_file, ((0, 0), (pad_w, pad_w)), 'constant')
    else:
        factor = w / float(fixed_size)
        new_h = int(h / factor)
        if new_h % 2 != 0:
            new_h -= 1
        pil_file = pil_file.resize((fixed_size, new_h))
        pad_h = int((fixed_size - new_h) / 2)
        array_file = np.array(pil_file)
        array_file = np.pad(array_file, ((pad_h, pad_h), (0, 0)), 'constant')

    output_file = Image.fromarray(array_file)
    return output_file


if __name__ == "__main__":
    dir_image = 'image'  # 图片所在文件夹
    dir_output = 'output'  # 输出结果文件夹
    if not os.path.exists(dir_output):
        os.makedirs(dir_output)
    i = 0
    list_image = os.listdir(dir_image)
    for file in list_image:
        path_image = os.path.join(dir_image, file)
        path_output = os.path.join(dir_output, file)
        pil_image = Image.open(path_image).convert('L')
        output_image = img_pad(pil_image)
        output_image.save(path_output)
        i += 1
        print('The num of processed images:', i)

结果对比:
原图(尺寸为1377 x 1623)
在这里插入图片描述

结果图(尺寸为1024 x 1024)
在这里插入图片描述

原图(尺寸为1623 x 1377)
在这里插入图片描述

结果图(尺寸为1024 x 1024)
在这里插入图片描述

评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值