opencv/samples/python/opencv_version.py

42 lines
744 B
Python
Raw Normal View History

2014-10-05 01:39:26 +08:00
#!/usr/bin/env python
2015-12-15 07:33:55 +08:00
'''
prints OpenCV version
Usage:
opencv_version.py [<params>]
params:
--build: print complete build info
--help: print this help
'''
# Python 2/3 compatibility
from __future__ import print_function
import numpy as np
import cv2 as cv
2014-10-05 01:39:26 +08:00
def main():
2014-10-05 01:39:26 +08:00
import sys
2015-12-15 07:33:55 +08:00
2014-10-05 01:39:26 +08:00
try:
param = sys.argv[1]
2015-12-15 07:33:55 +08:00
except IndexError:
2014-10-05 01:39:26 +08:00
param = ""
2015-12-15 07:33:55 +08:00
if "--build" == param:
print(cv.getBuildInformation())
2015-12-15 07:33:55 +08:00
elif "--help" == param:
print("\t--build\n\t\tprint complete build info")
print("\t--help\n\t\tprint this help")
2014-10-05 01:39:26 +08:00
else:
print("Welcome to OpenCV")
print('Done')
if __name__ == '__main__':
print(__doc__)
main()
cv.destroyAllWindows()