国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python調用攝像頭顯示圖像的實例

2020-01-04 14:52:32
字體:
來源:轉載
供稿:網友

如下所示:

import cv2import numpy as npbins = np.arange(256).reshape(256,1)def hist_curve(im): h = np.zeros((300,256,3)) if len(im.shape) == 2:  color = [(255,255,255)] elif im.shape[2] == 3:  color = [ (255,0,0),(0,255,0),(0,0,255) ] for ch, col in enumerate(color):  hist_item = cv2.calcHist([im],[ch],None,[256],[0,256])  cv2.normalize(hist_item,hist_item,0,255,cv2.NORM_MINMAX)  hist=np.int32(np.around(hist_item))  pts = np.int32(np.column_stack((bins,hist)))  cv2.polylines(h,[pts],False,col) y=np.flipud(h) return ydef hist_lines(im): h = np.zeros((300,256,3)) if len(im.shape)!=2:  print "hist_lines applicable only for grayscale images"  #print "so converting image to grayscale for representation"  im = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY) hist_item = cv2.calcHist([im],[0],None,[256],[0,256]) cv2.normalize(hist_item,hist_item,0,255,cv2.NORM_MINMAX) hist=np.int32(np.around(hist_item)) for x,y in enumerate(hist):  cv2.line(h,(x,0),(x,y),(255,255,255)) y = np.flipud(h) return yif __name__ == '__main__': import sys if len(sys.argv)>1:  im = cv2.imread(sys.argv[1]) else :  im = cv2.imread('../cpp/lena.jpg')  print "usage : python hist.py <image_file>" gray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY) print ''' Histogram plotting /n Keymap :/n a - show histogram for color image in curve mode /n b - show histogram in bin mode /n c - show equalized histogram (always in bin mode) /n d - show histogram for color image in curve mode /n e - show histogram for a normalized image in curve mode /n Esc - exit /n ''' cv2.imshow('image',im) while True:  k = cv2.waitKey(0)&0xFF  if k == ord('a'):   curve = hist_curve(im)   cv2.imshow('histogram',curve)   cv2.imshow('image',im)   print 'a'  elif k == ord('b'):   print 'b'   lines = hist_lines(im)   cv2.imshow('histogram',lines)   cv2.imshow('image',gray)  elif k == ord('c'):   print 'c'   equ = cv2.equalizeHist(gray)   lines = hist_lines(equ)   cv2.imshow('histogram',lines)   cv2.imshow('image',equ)  elif k == ord('d'):   print 'd'   curve = hist_curve(gray)   cv2.imshow('histogram',curve)   cv2.imshow('image',gray)  elif k == ord('e'):   print 'e'   norm = cv2.normalize(gray,alpha = 0,beta = 255,norm_type = cv2.NORM_MINMAX)   lines = hist_lines(norm)   cv2.imshow('histogram',lines)   cv2.imshow('image',norm)  elif k == 27:   print 'ESC'   cv2.destroyAllWindows()   break cv2.destroyAllWindows()

以上這篇python調用攝像頭顯示圖像的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到python教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 通辽市| 财经| 增城市| 公主岭市| 高要市| 林州市| 凌源市| 景洪市| 南陵县| 广东省| 柘城县| 耒阳市| 沙洋县| 临猗县| 塔河县| 中江县| 江孜县| 郓城县| 临江市| 凉城县| 乐陵市| 鄄城县| 庆阳市| 蒙阴县| 丰宁| 龙口市| 阳朔县| 祁连县| 托克托县| 永嘉县| 淮安市| 宜黄县| 海城市| 徐州市| 大理市| 茂名市| 铁力市| 云龙县| 罗源县| 彭州市| 绥江县|