QuintW's picture
added controlnet in build in extensions
78db0f1
raw
history blame
123 Bytes
import cv2
def apply_canny(img, low_threshold, high_threshold):
return cv2.Canny(img, low_threshold, high_threshold)