# controlnet_aux **Repository Path**: caoygit/controlnet_aux ## Basic Information - **Project Name**: controlnet_aux - **Description**: github controlnet_aux - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-04-08 - **Last Updated**: 2023-04-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ControlNet auxiliary models This is a Pypi installable copied version of HED, MLSD and Human Pose auxiliary models: https://github.com/lllyasviel/ControlNet/tree/main/annotator All credit goes to https://github.com/lllyasviel . ``` pip install controlnet-aux==0.0.1 ``` ```python from controlnet_aux import OpenposeDetector, MLSDdetector, HEDdetector, CannyDetector, MidasDetector open_pose = OpenposeDetector.from_pretrained("lllyasviel/ControlNet") mlsd = MLSDdetector.from_pretrained("lllyasviel/ControlNet") hed = HEDdetector.from_pretrained("lllyasviel/ControlNet") midas = MidasDetector.from_pretrained("lllyasviel/ControlNet") canny = CannyDetector() ```