canny = cv2.Canny(img, 100, 200) 

  报错:TypeError: Required argument 'threshold2' (pos 4) not found

canny = cv2.Canny(np.asarray(img), 100, 200) 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-10
猜你喜欢
  • 2021-05-02
  • 2021-08-29
  • 2021-06-22
  • 2021-08-20
  • 2021-12-04
  • 2022-02-23
相关资源
相似解决方案