Update to 2.0.0 tree from current Fremantle build
[opencv] / tests / swig_python / highgui / query_3gp.py
1 #! /usr/bin/env python
2
3 """
4 This script checks HighGUI's cvQueryFrame function
5 on a 3GP-compressed .3gp file.
6 """
7
8 # name if this test and it's requirements
9 TESTNAME = "query_3gp"
10 REQUIRED = []
11 ERRORS=[0.043,0.031,0.032,0.031,0.029,0.030,0.030,0.031,0.030,0.029,0.034,0.027,0.029,0.029,0.029,0.029,0.029,0.028,0.031,0.030,0.035,0.031,0.031,0.032,0.031,0.032,0.033,0.031,0.033]
12
13 # needed for sys.exit(int), .works file handling and check routine
14 import sys
15 import works
16 import query_test
17
18 # check requirements and delete old flag file, if it exists
19 if not works.check_files(REQUIRED,TESTNAME):
20         sys.exit(77)
21
22 # name of file we check here
23 FILENAME='3gp.3gp'
24
25 # run check routine
26 result=query_test.query_ok(FILENAME,ERRORS)
27
28 # create flag file for following tests
29 works.set_file(TESTNAME)
30
31  # return result of test routine
32 sys.exit(result)