"atomic bomb" commit. Reorganized OpenCV directory structure
This commit is contained in:
22
tests/swig_python/highgui/cvLoadImagePNG.py
Executable file
22
tests/swig_python/highgui/cvLoadImagePNG.py
Executable file
@@ -0,0 +1,22 @@
|
||||
#! /usr/bin/env python
|
||||
"""
|
||||
This script will test highgui's image loading functionality
|
||||
for .png files
|
||||
"""
|
||||
|
||||
# file extension to check
|
||||
EXTENSION = "png"
|
||||
|
||||
# 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)
|
||||
|
Reference in New Issue
Block a user