python:实现canny边缘检测 import cv2 img = cv2.imread('1.jpg') c1 = cv2.Canny(img, 128, 200) c2 = cv2.Canny(img