Python+OpenCV检测灯光亮点的实现方法


Posted in Python onNovember 02, 2020

本篇博文分享一篇寻找图像中灯光亮点(图像中最亮点)的教程,例如,检测图像中五个灯光的亮点并标记,项目效果如下所示:

Python+OpenCV检测灯光亮点的实现方法

Python+OpenCV检测灯光亮点的实现方法

第1步:导入并打开原图像,实现代码如下所示:

# import the necessary packages
from imutils import contours
from skimage import measure
import numpy as np
import argparse
import imutils
import cv2
# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=True,
 help="path to the image file")
args = vars(ap.parse_args())

第2步:开始检测图像中最亮的区域,首先需要从磁盘加载图像,然后将其转换为灰度图并进行平滑滤波,以减少高频噪声,实现代码如下所示:

#load the image, convert it to grayscale, and blur it
image = cv2.imread(args["image"])
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
blurred = cv2.GaussianBlur(gray, (11, 11), 0)

导入亮灯图像,过滤后效果如下所示:

Python+OpenCV检测灯光亮点的实现方法

第3步:阈值化处理,为了显示模糊图像中最亮的区域,将像素值p >= 200,设置为255(白色),像素值< 200,设置为0(黑色),实现代码如下所示:

# threshold the image to reveal light regions in the
# blurred image
thresh = cv2.threshold(blurred, 200, 255, cv2.THRESH_BINARY)[1]

效果如下所示:

Python+OpenCV检测灯光亮点的实现方法

 第4步:此时可看到图像中存在噪声(小斑点),所以需要通过腐蚀和膨胀操作来清除,实现代码如下所示:

# perform a series of erosions and dilations to remove
# any small blobs of noise from the thresholded image
thresh = cv2.erode(thresh, None, iterations=2)
thresh = cv2.dilate(thresh, None, iterations=4)

此时“干净”的图像如下所示:

Python+OpenCV检测灯光亮点的实现方法

第5步:本项目的关键步骤是对上图中的每个区域进行标记,即使在应用了腐蚀和膨胀后,仍然想要过滤掉剩余的小块儿区域。一个很好的方法是执行连接组件分析,实现代码如下所示:

# perform a connected component analysis on the thresholded
# image, then initialize a mask to store only the "large"
# components
labels = measure.label(thresh, neighbors=8, background=0)
mask = np.zeros(thresh.shape, dtype="uint8")
# loop over the unique components
for label in np.unique(labels):
 # if this is the background label, ignore it
 if label == 0:
  continue
 # otherwise, construct the label mask and count the
 # number of pixels 
 labelMask = np.zeros(thresh.shape, dtype="uint8")
 labelMask[labels == label] = 255
 numPixels = cv2.countNonZero(labelMask)
 # if the number of pixels in the component is sufficiently
 # large, then add it to our mask of "large blobs"
 if numPixels > 300:
  mask = cv2.add(mask, labelMask)

上述代码中,第4行使用scikit-image库执行实际的连接组件分析。measure.lable返回的label和阈值图像有相同的大小,唯一的区别就是label存储的为阈值图像每一斑点对应的正整数。

然后在第5行初始化一个掩膜来存储大的斑点。

第7行开始循环遍历每个label中的正整数标签,如果标签为零,则表示正在检测背景并可以安全的忽略它(9,10行)。否则,为当前区域构建一个掩码。

下面提供了一个GIF动画,它可视化地构建了每个标签的labelMask。使用这个动画来帮助你了解如何访问和显示每个单独的组件:

Python+OpenCV检测灯光亮点的实现方法

第15行对labelMask中的非零像素进行计数。如果numPixels超过了一个预先定义的阈值(在本例中,总数为300像素),那么认为这个斑点“足够大”,并将其添加到掩膜中。输出掩模如下图所示:

Python+OpenCV检测灯光亮点的实现方法

第6步:此时图像中所有小的斑点都被过滤掉了,只有大的斑点被保留了下来。最后一步是在的图像上绘制标记的斑点,实现代码如下所示:

# find the contours in the mask, then sort them from left to
# right
cnts = cv2.findContours(mask.copy(), cv2.RETR_EXTERNAL,
 cv2.CHAIN_APPROX_SIMPLE)
cnts = imutils.grab_contours(cnts)
cnts = contours.sort_contours(cnts)[0]
# loop over the contours
for (i, c) in enumerate(cnts):
 # draw the bright spot on the image
 (x, y, w, h) = cv2.boundingRect(c)
 ((cX, cY), radius) = cv2.minEnclosingCircle(c)
 cv2.circle(image, (int(cX), int(cY)), int(radius),
  (0, 0, 255), 3)
 cv2.putText(image, "#{}".format(i + 1), (x, y - 15),
  cv2.FONT_HERSHEY_SIMPLEX, 0.45, (0, 0, 255), 2)
# show the output image
cv2.imshow("Image", image)
cv2.waitKey(0)

 最后运行程序,可实现灯光亮点的检测和标记,每个灯泡都被独特地标上了圆圈,圆圈围绕着每个单独的明亮区域,效果如下所示:

Python+OpenCV检测灯光亮点的实现方法

Python+OpenCV检测灯光亮点的实现方法

本文来源于:Detecting multiple bright spots in an image with Python and OpenCV

到此这篇关于Python+OpenCV检测灯光亮点的实现方法的文章就介绍到这了,更多相关OpenCV 检测灯光亮点内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
跟老齐学Python之玩转字符串(1)
Sep 14 Python
Python复制目录结构脚本代码分享
Mar 06 Python
Python判断Abundant Number的方法
Jun 15 Python
剖析Django中模版标签的解析与参数传递
Jul 21 Python
python 实现数组list 添加、修改、删除的方法
Apr 04 Python
Python 实现网页自动截图的示例讲解
May 17 Python
Python机器学习k-近邻算法(K Nearest Neighbor)实例详解
Jun 25 Python
python学生信息管理系统实现代码
Dec 17 Python
导入tensorflow:ImportError: libcublas.so.9.0 报错
Jan 06 Python
Python 实现平台类游戏添加跳跃功能
Mar 27 Python
python中format函数如何使用
Jun 22 Python
Python预测2020高考分数和录取情况
Jul 08 Python
python获取命令行参数实例方法讲解
Nov 02 #Python
Windows环境下Python3.6.8 importError: DLLload failed:找不到指定的模块
Nov 01 #Python
详解tensorflow之过拟合问题实战
Nov 01 #Python
python cookie反爬处理的实现
Nov 01 #Python
10个python爬虫入门实例(小结)
Nov 01 #Python
利用pipenv和pyenv管理多个相互独立的Python虚拟开发环境
Nov 01 #Python
Python经纬度坐标转换为距离及角度的实现
Nov 01 #Python
You might like
深入探讨PHP中的内存管理问题
2011/08/31 PHP
Yii CGridView用法实例详解
2016/07/12 PHP
magento后台无法登录解决办法的两种方法
2016/12/09 PHP
PHP __call()方法实现委托示例
2019/05/20 PHP
用javascript动态调整iframe高度的代码
2007/04/10 Javascript
理解JavaScript变量作用域更轻松
2009/10/25 Javascript
在网页中使用document.write时遭遇的奇怪问题
2010/08/24 Javascript
jQuery实现的指纹扫描效果实例(附演示与demo源码下载)
2016/01/26 Javascript
vue之nextTick全面解析
2017/05/17 Javascript
微信小程序之GET请求的实例详解
2017/09/29 Javascript
JavaScript动态加载重复绑定问题
2018/04/01 Javascript
不使用JavaScript实现菜单的打开和关闭效果demo
2018/05/01 Javascript
简单理解Python中基于生成器的状态机
2015/04/13 Python
Python中使用items()方法返回字典元素对的教程
2015/05/21 Python
python控制nao机器人身体动作实例详解
2019/04/29 Python
详解pandas数据合并与重塑(pd.concat篇)
2019/07/09 Python
tensorflow入门:TFRecordDataset变长数据的batch读取详解
2020/01/20 Python
解决Python3.7.0 SSL低版本导致Pip无法使用问题
2020/09/03 Python
Python学习工具jupyter notebook安装及用法解析
2020/10/23 Python
德国药房apodiscounter中文官网:德国排名前三的网上药店
2019/06/03 全球购物
Pamela Love官网:纽约设计师Pamela Love的精美、时尚和穿孔珠宝
2020/10/19 全球购物
一套中级Java程序员笔试题
2015/01/14 面试题
软件工程师岗位职责
2013/11/16 职场文书
培训自我鉴定
2014/01/31 职场文书
依法行政工作汇报
2014/10/28 职场文书
师德师风学习材料
2014/12/19 职场文书
安全保证书格式
2015/02/28 职场文书
2015年七夕爱情寄语
2015/03/24 职场文书
公司财务人员岗位职责
2015/04/14 职场文书
2016年教师节感言
2015/12/09 职场文书
2016继续教育培训学习心得体会
2016/01/19 职场文书
用python实现监控视频人数统计
2021/05/21 Python
Nginx内网单机反向代理的实现
2021/11/07 Servers
配置Kubernetes外网访问集群
2022/03/31 Servers
sql注入报错之注入原理实例解析
2022/06/10 MySQL
el-table-column 内容不自动换行的解决方法
2022/08/14 Vue.js