# -*- coding: utf-8 -*-
import cv2
import sys
#主函数
#"__main__":以下为主代码,但无法在其他脚本中调用该主函数。
# https://blog.csdn.net/weixin_33980459/article/details/85815057
if __name__ =="__main__":
    if len(sys.argv) > 1:
        #输入图像
        image = cv2.imread(sys.argv[1],cv2.IMREAD_ANYCOLOR)
    else:
        print "Usge:python firstOpenCV3.py imageFile"
    #显示图像
    cv2.imshow("image",image) #读图,第一个参数为图片名称,第二个参数为函数
    cv2.waitKey(0)
    #0表示无限制等待用户触发,当触发后才会继续,如果设置其他时间,单位毫秒,则过时后运行destroyAllWindows
    cv2.destroyAllWindos()#销毁窗口
예제 #2
0
import cv2

img = cv2.imread("../TestImages/SnowLeo1.jpg")

cv2.imshow("Snow Leopard", img)

cv2.waitKey(0)
cv2.destroyAllWindos()
예제 #3
0
파일: test-cv.py 프로젝트: tljstewart/bcm
import numpy as np
import cv2

cap = cv2.VideoCapture(-1)

while (True):
    ret, frame = cap.read()

    print(ret)
    print(frame)

    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    cv2.imshow('frame', gray)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

cap.release()
cv2.destroyAllWindos()