error: (-215:Assertion failed) src_depth != CV_16F && src_depth != CV_32S in function 'convertToShow
最近在处理数据时,使用OpenCV将其转换图片时,出现了一个错误:
error: (-215:Assertion failed) src_depth != CV_16F && src_depth != CV_32S in function 'convertToShow
当出现这个问题时,我们可以看到,我们想要show出来的图片的类型是:int32
但是要想不报错,我们应该转换为np.uint8,将其标准化为np.uint8(0,255)或np.float32(0,1.0)
这样,就不会出现错误了。
希望以后能够多注意这样的问题。
posted on 2022-08-13 16:15 DylanYeung 阅读(0) 评论(0) 编辑 收藏 举报