当前位置:主页 > 软件编程 > Python代码 >

python opencv判断图像是否为空的实例

时间:2020-12-18 02:27:56 | 栏目:Python代码 | 点击:

如下所示:

import cv2
 
im = cv2.imread('2.jpg')
if im is None:
  print("图像为空")
# cv2.imshow("ss", im)
# cv2.waitKey(0)

您可能感兴趣的文章:

相关文章