sdc / annotator /canny /__init__.py
ddoc's picture
Upload 925 files
5931884
raw
history blame contribute delete
123 Bytes
import cv2
def apply_canny(img, low_threshold, high_threshold):
return cv2.Canny(img, low_threshold, high_threshold)