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
319 B
15 lines
319 B
#! /usr/bin/env octave |
|
|
|
|
|
cvNamedWindow("win", CV_WINDOW_AUTOSIZE); |
|
cap = cvCreateFileCapture("/home/x/work/sneaker/dvgrab-001.avi"); |
|
img = cvQueryFrame(cap); |
|
|
|
printf("Got frame of dimensions (%i x %i)",img.width,img.height); |
|
|
|
cvShowImage("win", img); |
|
cvMoveWindow("win", 200, 200); |
|
cvWaitKey(0); |
|
|
|
octimg = cv2im(img); |
|
|
|
|