mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Commented out ZoeDetector. Will re-instate once there's a controlnet-aux release that supports it.
This commit is contained in:
parent
9ec3d2bc0c
commit
51032dc0b2
@ -26,7 +26,8 @@ from controlnet_aux import (
|
||||
OpenposeDetector,
|
||||
PidiNetDetector,
|
||||
ContentShuffleDetector,
|
||||
ZoeDetector)
|
||||
# ZoeDetector, # FIXME: uncomment once ZoeDetector is availabel in official controlnet_aux release
|
||||
)
|
||||
|
||||
from .image import ImageOutput, build_image_output, PILInvocationConfig
|
||||
|
||||
@ -324,14 +325,16 @@ class ContentShuffleImageProcessorInvocation(ImageProcessorInvocation, PILInvoca
|
||||
return processed_image
|
||||
|
||||
|
||||
class ZoeDepthImageProcessorInvocation(ImageProcessorInvocation, PILInvocationConfig):
|
||||
"""Applies Zoe depth processing to image"""
|
||||
# fmt: off
|
||||
type: Literal["zoe_depth_image_processor"] = "zoe_depth_image_processor"
|
||||
# fmt: on
|
||||
|
||||
def run_processor(self, image):
|
||||
zoe_depth_processor = ZoeDetector.from_pretrained("lllyasviel/Annotators")
|
||||
processed_image = zoe_depth_processor(image)
|
||||
return processed_image
|
||||
# # FIXME: ZoeDetector was implemented _after_ most recent official release of controlnet_aux (v0.0.3)
|
||||
# # so it is commented out until a new release is made
|
||||
# class ZoeDepthImageProcessorInvocation(ImageProcessorInvocation, PILInvocationConfig):
|
||||
# """Applies Zoe depth processing to image"""
|
||||
# # fmt: off
|
||||
# type: Literal["zoe_depth_image_processor"] = "zoe_depth_image_processor"
|
||||
# # fmt: on
|
||||
#
|
||||
# def run_processor(self, image):
|
||||
# zoe_depth_processor = ZoeDetector.from_pretrained("lllyasviel/Annotators")
|
||||
# processed_image = zoe_depth_processor(image)
|
||||
# return processed_image
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user