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

如下所示:

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

相关推荐