X-Git-Url: http://git.maemo.org/git/?p=opencv;a=blobdiff_plain;f=tests%2Fpython%2Fhighgui%2FcvCaptureFromFile.py;fp=tests%2Fpython%2Fhighgui%2FcvCaptureFromFile.py;h=0000000000000000000000000000000000000000;hp=107a5099dd2a1dce9657a256e7274b190ed341dd;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hpb=454138ff8a20f6edb9b65a910101403d8b520643 diff --git a/tests/python/highgui/cvCaptureFromFile.py b/tests/python/highgui/cvCaptureFromFile.py deleted file mode 100755 index 107a509..0000000 --- a/tests/python/highgui/cvCaptureFromFile.py +++ /dev/null @@ -1,42 +0,0 @@ -#! /usr/bin/env python -""" -This script will test highgui's video reading functionality -for a given parameter RAW formats. -""" - - -# needed for sys.exit(int) and .works file handling -import sys -import works -from works import * - -#import the necessary things for OpenCV -import opencv -from opencv.highgui import * -from opencv.cv import * - - -# some defines -TESTNAME = "cvCaptureFromFile" -REQUIRED = [] -PREFIX = "/home/dols/Source/opencv/data/qcif_" -EXTENSION= ".avi" - - -# this functions tries to open a videofile -# using the filename PREFIX+FORMAT.EXTENSION and returns True/False -# on success/fail. - -def video_ok( FORMAT ): - - # check requirements and delete old .works file - if not works.check_files( REQUIRED, TESTNAME+FORMAT ): - return false - - video = cvCaptureFromFile(PREFIX+FORMAT+EXTENSION) - - if video is None: - sys.exit(1) - - works.set_file( TESTNAME+FORMAT ) - return True