File size: 328 Bytes
51e82cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# -*- coding: utf-8 -*-
# Copyright (c) XiMing Xing. All rights reserved.
# Author: XiMing Xing
# Description:
import cv2
class CannyDetector:
def __call__(self, img, low_threshold, high_threshold, L2gradient=False):
return cv2.Canny(img, low_threshold, high_threshold, L2gradient)
__all__ = ['CannyDetector']
|