RAVE / annotator /canny /__init__.py
ozgurkara's picture
first commit
eb9a9b4
raw
history blame contribute delete
No virus
123 Bytes
import cv2
def apply_canny(img, low_threshold, high_threshold):
return cv2.Canny(img, low_threshold, high_threshold)