Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
haofanwang committed Aug 4, 2023
1 parent 98a88ca commit e24691a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ img = Image.open(BytesIO(response.content)).convert("RGB").resize((512, 512))
# "lineart_coarse", "lineart_realistic", "mediapipe_face", "mlsd", "normal_bae", "normal_midas",
# "openpose", "openpose_face", "openpose_faceonly", "openpose_full", "openpose_hand",
# "scribble_hed, "scribble_pidinet", "shuffle", "softedge_hed", "softedge_hedsafe",
# "softedge_pidinet", "softedge_pidsafe", "dwpose"]
# "softedge_pidinet", "softedge_pidsafe"]
processor_id = 'scribble_hed'
processor = Processor(processor_id)

Expand Down
3 changes: 2 additions & 1 deletion src/controlnet_aux/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
from .canny import CannyDetector
from .mediapipe_face import MediapipeFaceDetector
from .segment_anything import SamDetector
from .shuffle import ContentShuffleDetector
from .shuffle import ContentShuffleDetector
from .dwpose import DWposeDetector
2 changes: 1 addition & 1 deletion src/controlnet_aux/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
LeresDetector, LineartAnimeDetector,
LineartDetector, MediapipeFaceDetector,
MidasDetector, MLSDdetector, NormalBaeDetector,
OpenposeDetector, PidiNetDetector, ZoeDetector)
OpenposeDetector, PidiNetDetector, ZoeDetector,)

LOGGER = logging.getLogger(__name__)

Expand Down

0 comments on commit e24691a

Please sign in to comment.