pythonからOpenCV経由でキャプチャしてみる
pythonからOpenCV経由でキャプチャしてみる
リンク先の下の方です。
$ sudo apt-get install python-opencv
$ python
Python 2.7.9 (default, Sep 17 2016, 20:26:04)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> c = cv2.VideoCapture(0)
>>> r, img = c.read()
>>> cv2.imwrite('capture.jpg', img)
True
>>>
出てきたcapture.jpgを確認してみてください。
リンク先の下の方です。
$ sudo apt-get install python-opencv
$ python
Python 2.7.9 (default, Sep 17 2016, 20:26:04)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> c = cv2.VideoCapture(0)
>>> r, img = c.read()
>>> cv2.imwrite('capture.jpg', img)
True
>>>
出てきたcapture.jpgを確認してみてください。
コメント
コメントを投稿