mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 19:20:28 +08:00
14 lines
322 B
Python
Executable File
14 lines
322 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
import cv2.cv as cv
|
|
|
|
cap = cv.CreateFileCapture("../c/tree.avi")
|
|
img = cv.QueryFrame(cap)
|
|
print "Got frame of dimensions (", img.width, " x ", img.height, ")"
|
|
|
|
cv.NamedWindow("win", cv.CV_WINDOW_AUTOSIZE)
|
|
cv.ShowImage("win", img)
|
|
cv.MoveWindow("win", 200, 200)
|
|
cv.WaitKey(0)
|
|
cv.DestroyAllWindows()
|