mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
23 lines
384 B
Python
23 lines
384 B
Python
|
#! /usr/bin/env python
|
||
|
"""
|
||
|
This script will test highgui's image loading functionality
|
||
|
for .bmp files
|
||
|
"""
|
||
|
|
||
|
# file extension to check
|
||
|
EXTENSION = "bmp"
|
||
|
|
||
|
# 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)
|
||
|
|