opencv读取多帧图像
程序员文章站
2022-03-31 20:53:54
...
import cv2
import matplotlib.pyplot as plt
img = cv2.imreadmulti("testsampleLV movie 2.tif", [], cv2.IMREAD_UNCHANGED)
# img is a tuple, the first element is True, the second element is a list of array.
plt.imshow(img[0][1])
plt.show()
上一篇: 数值分析中MATLAB的应用
下一篇: 使用一组坐标信息拟合圆(matlab)