Created
April 3, 2011 05:01
-
-
Save atimin/900204 to your computer and use it in GitHub Desktop.
Простой пример захвата изображения с камеры и вывод его на экран, с помощью библиотеки python-opencv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from opencv import cv | |
from opencv import highgui | |
DEV = 0 #номер устройства /dev/video0 | |
if __name__ == '__main__': | |
# Создаем окно для вывода изображения с камеры | |
highgui.cvNamedWindow('Camera', highgui.CV_WINDOW_AUTOSIZE) | |
highgui.cvMoveWindow('Camera', 10, 10) | |
# Захватываем камеру | |
capture = highgui.cvCreateCameraCapture(DEV) | |
# Рабочий цикл, выход по нажатию 'q' | |
key = '' | |
while key != 'q': | |
# Получаем снимок с камеры и выводим его на окно | |
frame = highgui.cvQueryFrame(capture) | |
highgui.cvShowImage('Camera', frame) | |
# Ждем 5 мс нажатие клавиши | |
key = highgui.cvWaitKey(5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
устарело