1、安裝
pip install opencv_python-2.4.12-cp27-none-win_amd64.whl
2、**
#coding=utf-8
import cv2
import time
cap=cv2.videocapture(0)
#讀取攝像頭,0表示系統預設攝像頭
while true:
ret,photo=cap.read()
#讀取影象
cv2.imshow('please take your photo!!',photo)
#將影象傳送至視窗
key=cv2.waitkey(2)
#設定等待時間,若數字為0則影象定格
if key==ord(" "):
#按空格獲取影象
#以當前時間儲存
cv2.imwrite(filename,photo)
#儲存位置
if key==ord("q"):
#按「q」退出程式
break
3、效果如下圖:
Opencv Python 顯示攝像頭的幀
import cv2 cameracapture cv2.videocapture 0 獲取滑鼠指令 clicked false def onmouse event,x,y,flags,param global clicked if event cv2.event lbuttonup 滑鼠左鍵鬆開 ...
攝像頭程式設計
這是乙個關於設想頭的類 using system using system.runtime.interopservices namespace webcam structlayout layoutkind.sequential public struct bitmapinfoheader struc...
攝像頭記錄
1.參考 camera.parameters parameters camera.getparameters listsizelist parameters.getsupportedpreviewsizes 如果sizelist只有乙個我們也沒有必要做什麼了,因為就他乙個別無選擇 if sizeli...