Up default 作成: 2021-04-08
更新: 2021-04-09


    default.py
    #!/usr/bin/python import cv2 import sys camera_id = 0 delay = 1 window_name = 'streaming' cap = cv2.VideoCapture(camera_id) if not cap.isOpened(): sys.exit() def decode_fourcc(v): v = int(v) return "".join([chr((v >> 8 * i) & 0xFF) for i in range(4)]) def info(): fourcc = decode_fourcc(cap.get(cv2.CAP_PROP_FOURCC)) width = cap.get(cv2.CAP_PROP_FRAME_WIDTH) height = cap.get(cv2.CAP_PROP_FRAME_HEIGHT) fps = cap.get(cv2.CAP_PROP_FPS) print("fourcc:{} fps:{} width:{} height:{}".format(fourcc, fps, width, height)) def loop(): while True: ret, frame = cap.read() if ret: cv2.imshow(window_name, frame) # つぎを書かないと画像ウィンドウが開かない cv2.waitKey(delay) def destroy(): cap.release() cv2.destroyWindow(window_name) # The Program starts from here if __name__ == '__main__': info() try: loop() # When control c is pressed child program destroy() will be executed. except KeyboardInterrupt: destroy()


    $ vi default.py
    $ chmod +x default.py
    $ ./default.py fourcc:BGR3 fps:30.0 width:640.0 height:480.0 PC のデスクトップに,カメラ動画の Xウィンドウが開く。
    画像サイズは,640x480
    遅延時間は,15秒。
    control+C のキー入力で終了。