File size: 341 Bytes
564df58
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from backend.annotators.control_interface import ControlInterface
from controlnet_aux import MLSDdetector
from PIL import Image


class MlsdControl(ControlInterface):
    def get_control_image(self, image: Image) -> Image:
        mlsd = MLSDdetector.from_pretrained("lllyasviel/ControlNet")
        image = mlsd(image)
        return image