Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
toto10
/
extensions
like
1
Model card
Files
Files and versions
Community
7
refs/pr/2
extensions
/
microsoftexcel-controlnet
/
annotator
/
canny
/
__init__.py
toto10
Upload folder using huggingface_hub (
#1
)
34097e9
over 1 year ago
raw
Copy download link
history
blame
Safe
123 Bytes
import
cv2
def
apply_canny
(
img, low_threshold, high_threshold
):
return
cv2.Canny(img, low_threshold, high_threshold)