码迷,mamicode.com
首页 > 编程语言 > 详细

在python3下使用OpenCV 抓取摄像头图像并实时显示3色直方图

时间:2018-07-06 14:53:29      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:from   enc   none   href   rom   bre   npos   border   cap   

以下代码为在Python3环境下利用OpenCV 抓取摄像头的实时图像, 通过OpenCV的 calHist函数计算直方图, 并显示在3个不同窗口中.

import cv2
import numpy as np
from matplotlib import pyplot as plt
import time

cap  = cv2.VideoCapture(0)
for i in range(0, 19):
     print(cap.get(i))

while(1):
     ret, frame = cap.read()
     # color = (‘b‘, ‘g‘, ‘r‘)
     color = ((255,0,0), (0,255,0), (0,0,255))
    

    for i, col in enumerate(color):
         hist = cv2.calcHist([frame], [i], None, [256], [0, 256])
         minVal, maxVal,minPos,maxPos = cv2.minMaxLoc(hist)
         # print(minVal, maxVal,minPos,maxPos)
         histImage = np.zeros([256,256,3], np.uint8)
         for x in range(256):
             cv2.line(histImage, (x,256), (x, 256-(hist[x]/maxVal)*250), col)
         cv2.imshow("Hist{}".format(i), histImage)
    
     cv2.imshow("Capture", frame)
     # time.sleep(0.01)

    key = cv2.waitKey(1)
     if key & 0xff == ord(‘q‘) or key == 27:
         print(frame.shape,ret)
         break
cap.release()
cv2.destroyAllWindows()


技术分享图片

cnblogs Tags: ,

在python3下使用OpenCV 抓取摄像头图像并实时显示3色直方图

标签:from   enc   none   href   rom   bre   npos   border   cap   

原文地址:https://www.cnblogs.com/gxgl314/p/9273500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!