Jetson TX1使用usb camera采集图像
Posted haiyang21
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jetson TX1使用usb camera采集图像 相关的知识,希望对你有一定的参考价值。
该方法只启动usb摄像头
import cv2 import numpy import matplotlib.pyplot as plot class Camera: cap = cv2.VideoCapture(0) @staticmethod def getCamera(): ret, frame = Camera.cap.read() return ret, frame @staticmethod def getCap(): return Camera.cap def main(): camera = Camera() while(1): ret, frame = camera.getCamera() cv2.imshow("capture", frame) if cv2.waitKey(1) & 0xFF == ord(‘q‘): break camera.cap.release() # cv2.destroyAllWindows() if __name__ == ‘__main__‘: main()
以上是关于Jetson TX1使用usb camera采集图像 的主要内容,如果未能解决你的问题,请参考以下文章