opencv-python——报错解决:error: (-215:Assertion failed) func != 0 in function ‘resize‘

报错截图

在这里插入图片描述

报错原因及解决方法

  • 输入resize函数的image不是uint8格式,转换成uint8即可。
image = image.astype(np.uint8)

参考文章:

  • https://stackoverflow.com/questions/55428929/error-while-resizing-image-error-215assertion-failed-func-0-in-functio

你可能感兴趣的:(opencv,python,opencv,python,人工智能)