【发布时间】:2019-06-07 04:24:29
【问题描述】:
我正在尝试使用this 库。特别是这 3 行:
image_stream = io.BytesIO(image_bytes)
frame = cv2.imread(image_stream)
我有一个例外:
Traceback (most recent call last):
File "/home/a/Pictures/pycharm-community-2018.3.2/helpers/pydev/pydevd.py", line 1741, in <module>
main()
File "/home/a/Pictures/pycharm-community-2018.3.2/helpers/pydev/pydevd.py", line 1735, in main
globals = debugger.run(setup['file'], None, None, is_module)
File "/home/a/Pictures/pycharm-community-2018.3.2/helpers/pydev/pydevd.py", line 1135, in run
pydev_imports.execfile(file, globals, locals) # execute the script
File "/home/a/Pictures/pycharm-community-2018.3.2/helpers/pydev/_pydev_imps/_pydev_execfile.py", line 18, in execfile
exec(compile(contents+"\n", file, 'exec'), glob, loc)
File "/home/a/Documents/wiker/main.py", line 13, in <module>
if __name__ == '__main__': main()
File "/home/a/Documents/wiker/main.py", line 10, in main
article['video'] = video.make_video_from_article(article)
File "/home/a/Documents/wiker/video.py", line 15, in make_video_from_article
frame = cv2.imread(image_stream)
TypeError: bad argument type for built-in operation
但它适用于真实文件。这里可以解决什么问题。
【问题讨论】:
-
打印出
print(type(image_stream))会得到什么? -
-
阅读文档。
imread将文件名作为第一个参数,而不是流。它仅用于从文件中读取。如果要从内存中解码数据,需要使用imdecode。 -
您的
image_bytes是否已编码?
标签: python python-3.x opencv