From 00a8d60c1b7813dce0fadfa50ea82da2e161e6a9 Mon Sep 17 00:00:00 2001 From: user1 Date: Fri, 5 May 2023 14:12:19 -0700 Subject: [PATCH] Added more preprocessor nodes for: MidasDepth ZoeDepth MLSD NormalBae Pidi LineartAnime ContentShuffle Removed pil_output options, ControlNet preprocessors should always output as PIL. Removed diagnostics and other general cleanup. --- invokeai/app/invocations/controlnet_image_processors.py | 1 - 1 file changed, 1 deletion(-) diff --git a/invokeai/app/invocations/controlnet_image_processors.py b/invokeai/app/invocations/controlnet_image_processors.py index 146740c082..f94b3fbede 100644 --- a/invokeai/app/invocations/controlnet_image_processors.py +++ b/invokeai/app/invocations/controlnet_image_processors.py @@ -136,7 +136,6 @@ class CannyImageProcessorInvocation(ImageProcessorInvocation, PILInvocationConfi # Input low_threshold: float = Field(default=100, ge=0, description="low threshold of Canny pixel gradient") high_threshold: float = Field(default=200, ge=0, description="high threshold of Canny pixel gradient") - # fmt: on def run_processor(self, image):