当前位置:   article > 正文

图像调整大小 ImageResize_imageresize+

imageresize+

图像调整大小 ImageResize

导入语句

from .utils import max_, min_
from nodes import MAX_RESOLUTION
import comfy.utils

import torch
import torch.nn.functional as F
import torchvision.transforms.v2 as T

import warnings
warnings.filterwarnings('ignore', module="torchvision")
import math
import os
import numpy as np
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

这部分代码导入了处理图像所需的各种库和模块。torchtorchvision 用于图像的变换处理,numpy 用于数组操作,而 comfy.utils 可能包含一些方便的自定义工具函数。

类定义 ImageResize

class ImageResize:
    @classmethod
    def INPUT_TYPES(s):
        return {
            "required": {
                "image": ("IMAGE",),
                "width": ("INT", { "default": 512, "min": 0, "max": MAX_RESOLUTION, "step": 8, }),
                "height": ("INT", { "default": 512, "min": 0, "max": MAX_RESOLUTION, "step": 8, }),
                "interpolation": (["nearest", "bilinear", "bicubic", "area", "nearest-exact", "lanczos"],),
                "method": (["stretch", "keep proportion", "fill / crop", "pad"],),
                "condition": (["always", "downscale if bigger", "upscale if smaller", "if bigger area", "if smaller area"],),
                "multiple_of": ("INT", { "default": 0, "min": 0, "max": 512, "step": 1, }),
            }
        }
    RETURN_TYPES = ("IMAGE", "INT", "INT",)
    RETURN_NAMES = ("IMAGE", "width", "height",)
    FUNCTION = "execute"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

此类定义了如何接受输入并执行图像大小调整。它包括多种调整大小的方法、插值方式、以及何时执行大小调整的条件。

函数 execute

def execute(self, image, width, height, method="stretch", interpolation="nearest", condition="always", multiple_of=0, keep_proportion=False):
    _, oh, ow, _ = image.shape
    x = y = x2 = y2 = 0
    pad_left = pad_right = pad_top = pad_bottom = 0
  • 1
  • 2
  • 3
  • 4

该方法是类的主要功能实现部分,用于调整传入图像的大小。根据提供的方法、宽度、高度、插值方式和其他参数进行操作。

处理保持比例和填充
    if keep_proportion:
        method = "keep proportion"

    if multiple_of > 1:
        width = width - (width % multiple_of)
        height = height - (height % multiple_of)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

如果指定保持图像的比例或确保宽度和高度是某个数的倍数,此处进行相应调整。

计算新的尺寸
    if method == 'keep proportion' or method == 'pad':
        # 代码省略,详细计算调整后的新宽度和高度
  • 1
  • 2

对于保持比例或填充方法,计算调整后的新尺寸,确保图像比例不变或者按需填充空白。

填充和裁剪
    elif method.startswith('fill'):
    	    width = width if width > 0 else ow
            height = height if height > 0 else oh

            ratio = max(width / ow, height / oh)
            new_width = round(ow*ratio)
            new_height = round(oh*ratio)
            x = (new_width - width) // 2
            y = (new_height - height) // 2
            x2 = x + width
            y2 = y + height
            if x2 > new_width:
                x -= (x2 - new_width)
            if x < 0:
                x = 0
            if y2 > new_height:
                y -= (y2 - new_height)
            if y < 0:
                y = 0
            width = new_width
            height = new_height
        else:
            width = width if width > 0 else ow
            height = height if height > 0 else oh
        # 代码省略,处理填充或裁剪的情况
  • 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

处理填充或裁剪图像的情况,确保图像符合指定的尺寸。

最终调整大小
    if "always" in condition \
        or ("downscale if bigger" == condition and (oh > height or ow > width)) or ("upscale if smaller" == condition and (oh < height or ow < width)) \
        or ("bigger area" in condition and (oh * ow > height * width)) or ("smaller area" in condition and (oh * ow < height * width)):

        outputs = image.permute(0,3,1,2)
        # 根据选择的插值方式调整图像大小
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在满足指定条件的情况下,

调整图像的大小。这部分代码检查是否需要调整图像大小,并执行实际的调整大小操作。

返回值
    return(outputs, outputs.shape[2], outputs.shape[1],)
  • 1

函数返回调整后的图像以及其宽度和高度。

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号