Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
jac12
/
mie
like
0
Dataset card
Files
Files and versions
Community
main
mie
/
Jac12
/
extensions
/
sd-webui-controlnet
/
annotator
/
canny
/
__init__.py
jac12
Upload 906 files
731744b
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
123 Bytes
import
cv2
def
apply_canny
(
img, low_threshold, high_threshold
):
return
cv2.Canny(img, low_threshold, high_threshold)