X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=tests%2Fpython%2Fhighgui%2FcvLoadImageTIFF.py;fp=tests%2Fpython%2Fhighgui%2FcvLoadImageTIFF.py;h=0000000000000000000000000000000000000000;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=e6480681d284817fc8f0cd8fc162d63b93151b60;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/tests/python/highgui/cvLoadImageTIFF.py b/tests/python/highgui/cvLoadImageTIFF.py deleted file mode 100755 index e648068..0000000 --- a/tests/python/highgui/cvLoadImageTIFF.py +++ /dev/null @@ -1,22 +0,0 @@ -#! /usr/bin/env python -""" -This script will test highgui's image loading functionality -for .tiff files -""" - -# file extension to check -EXTENSION = "tiff" - -# import check routine -import cvLoadImage -import sys - -# check image file of extension EXTENSION, -# the function also exits and returns -# 0,1 or 77 accordingly. - -if cvLoadImage.image_ok(EXTENSION): - sys.exit(0) -else: - sys.exit(1) -