mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
369 B
15 lines
369 B
15 years ago
|
#! /usr/bin/env python
|
||
|
|
||
|
import opencv
|
||
|
from opencv import highgui
|
||
|
|
||
|
cap = highgui.cvCreateFileCapture("../c/tree.avi")
|
||
|
img = highgui.cvQueryFrame(cap)
|
||
|
print "Got frame of dimensions (", img.width, " x ", img.height, " )"
|
||
|
|
||
|
highgui.cvNamedWindow("win", highgui.CV_WINDOW_AUTOSIZE)
|
||
|
highgui.cvShowImage("win", img)
|
||
|
highgui.cvMoveWindow("win", 200, 200)
|
||
|
highgui.cvWaitKey(0)
|
||
|
|