码迷,mamicode.com
首页 > 其他好文 > 详细

Jetson TX1使用usb camera采集图像 (2)

时间:2019-04-15 00:13:09      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:window   atp   def   name   mat   div   cap   eth   tcap   

该方法只启动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采集图像 (2)

标签:window   atp   def   name   mat   div   cap   eth   tcap   

原文地址:https://www.cnblogs.com/haiyang21/p/10708241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!