nodes_canny.py 1008 Bytes
Newer Older
1
2
3
4
5
#From https://github.com/kornia/kornia
import math

import torch
import torch.nn.functional as F
6
import comfy.model_management
7

8
from kornia.filters import canny
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


class Canny:
    @classmethod
    def INPUT_TYPES(s):
        return {"required": {"image": ("IMAGE",),
                                "low_threshold": ("FLOAT", {"default": 0.4, "min": 0.01, "max": 0.99, "step": 0.01}),
                                "high_threshold": ("FLOAT", {"default": 0.8, "min": 0.01, "max": 0.99, "step": 0.01})
                                }}

    RETURN_TYPES = ("IMAGE",)
    FUNCTION = "detect_edge"

    CATEGORY = "image/preprocessors"

    def detect_edge(self, image, low_threshold, high_threshold):
25
        output = canny(image.to(comfy.model_management.get_torch_device()).movedim(-1, 1), low_threshold, high_threshold)
26
        img_out = output[1].to(comfy.model_management.intermediate_device()).repeat(1, 3, 1, 1).movedim(1, -1)
27
28
29
30
31
        return (img_out,)

NODE_CLASS_MAPPINGS = {
    "Canny": Canny,
}