python调用摄像头显示图像的实例


Posted in Python onAugust 03, 2018

如下所示:

import cv2
import numpy as np

bins = 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 y

def 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 y


if __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调用摄像头显示图像的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python实现从订阅源下载图片的方法
Mar 11 Python
Python使用multiprocessing创建进程的方法
Jun 04 Python
Python实现好友全头像的拼接实例(推荐)
Jun 24 Python
Python轻量级ORM框架Peewee访问sqlite数据库的方法详解
Jul 20 Python
python使用 HTMLTestRunner.py生成测试报告
Oct 20 Python
python解决pandas处理缺失值为空字符串的问题
Apr 08 Python
Python实现基于KNN算法的笔迹识别功能详解
Jul 09 Python
python写程序统计词频的方法
Jul 29 Python
python随机数分布random均匀分布实例
Nov 27 Python
PyCharm License Activation激活码失效问题的解决方法(图文详解)
Mar 12 Python
python 基于opencv 实现一个鼠标绘图小程序
Dec 11 Python
Python的信号库Blinker用法详解
Dec 31 Python
python开启摄像头以及深度学习实现目标检测方法
Aug 03 #Python
Python函数参数操作详解
Aug 03 #Python
利用python打开摄像头及颜色检测方法
Aug 03 #Python
numpy添加新的维度:newaxis的方法
Aug 02 #Python
numpy.ndarray 交换多维数组(矩阵)的行/列方法
Aug 02 #Python
对numpy中的transpose和swapaxes函数详解
Aug 02 #Python
Numpy 改变数组维度的几种方法小结
Aug 02 #Python
You might like
Windows下IIS6/Apache2.2.4+MySQL5.2+PHP5.2.1安装配置方法
2007/05/03 PHP
php中定义网站根目录的常用方法
2010/08/08 PHP
php编写的简单页面跳转功能实现代码
2013/11/27 PHP
ThinkPHP模型详解
2015/07/27 PHP
小程序微信支付功能配置方法示例详解【基于thinkPHP】
2019/05/05 PHP
php命名空间设计思想、用法与缺点分析
2019/07/17 PHP
从JavaScript 到 JQuery (1)学习小结
2009/02/12 Javascript
JavaScript实现页面实时显示当前时间的简单实例
2013/07/20 Javascript
Node.js实现文件上传
2016/07/05 Javascript
微信小程序 时间格式化(util.formatTime(new Date))详解
2016/11/16 Javascript
vue.js学习笔记:如何加载本地json文件
2017/01/17 Javascript
JavaScript实现经纬度转换成地址功能
2017/03/28 Javascript
layui实现文件或图片上传记录
2018/08/28 Javascript
在Vue项目中取消ESLint代码检测的步骤讲解
2019/01/27 Javascript
vue-router源码之history类的浅析
2019/05/21 Javascript
vue 集成jTopo 处理方法
2019/08/07 Javascript
vue ssr服务端渲染(小白解惑)
2019/11/10 Javascript
微信小程序input抖动问题的修复方法
2021/03/03 Javascript
Python复制文件操作实例详解
2015/11/10 Python
使用Python的Twisted框架构建非阻塞下载程序的实例教程
2016/05/25 Python
Python中关于Sequence切片的下标问题详解
2017/06/15 Python
Python使用zip合并相邻列表项的方法示例
2018/03/17 Python
Python生成器的使用方法和示例代码
2019/03/04 Python
如何在pycharm中安装第三方包
2020/10/27 Python
如何通过python实现IOU计算代码实例
2020/11/02 Python
利用Python pandas对Excel进行合并的方法示例
2020/11/04 Python
中国最大隐形眼镜网上商城:视客眼镜网
2016/10/30 全球购物
纽约海:Sea New York
2018/11/04 全球购物
龟牌英国商店:Turtle Wax Brand Store UK
2019/07/02 全球购物
司机的工作范围及职责
2013/11/13 职场文书
超市周年庆活动方案
2014/08/16 职场文书
全国劳模先进事迹材料(2016精选版)
2016/02/25 职场文书
MySQL 查询速度慢的原因
2021/05/25 MySQL
JavaScript实现两个数组的交集
2022/03/25 Javascript
使用CSS实现六边形的图片效果
2022/08/05 HTML / CSS
postgresql中如何执行sql文件
2023/05/08 PostgreSQL