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.
This commit is contained in:
user1 2023-05-05 14:12:19 -07:00 committed by Kent Keirsey
parent 3aa182390a
commit 00a8d60c1b

View File

@ -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):