Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ozgurkara
/
RAVE
like
79
Running
on
A10G
App
Files
Files
Community
1
main
RAVE
/
annotator
/
canny
/
__init__.py
ozgurkara
first commit
eb9a9b4
about 1 year 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)