我正在进行图像分析,并希望在图像处理上显示许多变化。
当我使用matplotlib.pyplot时,图像会自动缩小到屏幕大小。我更喜欢它们到达屏幕下方并且可以滚动。
在散景图像中,图像分辨率较差,经过一定数量的图像后,由于内存问题,浏览器显示空白:
Uncaught RangeError: Source is too large
layout.html:189 'CanvasRenderingContext2D.webkitImageSmoothingEnabled' is deprecated. Please use 'CanvasRenderingContext2D.imageSmoothingEnabled' instead.
答案 0 :(得分:0)
我最终使用mpld3
pip install mpld3
并将pyplot.show()
替换为mpld3.show()
超级简单