CN104077589A - 一组新的图像边缘特征 - Google Patents

一组新的图像边缘特征 Download PDF

Info

Publication number
CN104077589A
CN104077589A CN201310106129.6A CN201310106129A CN104077589A CN 104077589 A CN104077589 A CN 104077589A CN 201310106129 A CN201310106129 A CN 201310106129A CN 104077589 A CN104077589 A CN 104077589A
Authority
CN
China
Prior art keywords
feature
edge
mapare
gredge
matrast
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201310106129.6A
Other languages
English (en)
Inventor
单志辉
刘宇
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
NANJING SHICHAZHE INFORMATION TECHNOLOGY CO., LTD.
Original Assignee
NANJING YIJIZHI INFORMATION TECHNOLOGY Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by NANJING YIJIZHI INFORMATION TECHNOLOGY Co Ltd filed Critical NANJING YIJIZHI INFORMATION TECHNOLOGY Co Ltd
Priority to CN201310106129.6A priority Critical patent/CN104077589A/zh
Publication of CN104077589A publication Critical patent/CN104077589A/zh
Pending legal-status Critical Current

Links

Landscapes

  • Image Analysis (AREA)

Abstract

本发明公开了一组新的图像边缘特征,分别为Gredge特征,Mapare和Matrast特征,这三个特征互相补充,能够共同描述出图像中的边缘。其中Gredge特征中计算某一矩形框区域所在位置的边缘方向,步骤主要包括:(1)通过访问灰度积分图,得到该矩形区域的上下左右(up、down、left、right)四个区域的平均灰度值;(2)计算水平和垂直方向边缘dx、dy;(3)通过查表得到边缘角度。其中Mapare特征和Matrast特征用来度量边缘强度,通过将这三个特征与分类器相结合,可以快速高效地利用边缘信息对图像进行分类。

Description

一组新的图像边缘特征
技术领域
本发明属于计算机视觉和图像处理领域的一组新的图像边缘特征,具体提出三种新的特征,这三个特征互相补充,共同描述图像中的边缘。
背景技术
图像特征的设计是计算机视觉的一个基本研究问题。图像特征的设计是否恰当直接影响着分类器的性能。实际使用较多的图像特征有Harr特征,Hog特征,Sift特征等。
在某些应用领域如行人检测,边缘是最重要的信息之一,因而设计出合适的图像边缘特征至关重要。目前较为成功的边缘特征是Hog特征,Hog特征以直方图的方式统计图像中各个点的边缘方向分布,达到了描述边缘的目的,因而取得了较好的结果。但是,Hog特征的缺点是计算速度慢,这限制了它在实际中的应用。
发明内容
本发明的目的是提出一组新的图像边缘特征。
本发明要解决的技术问题是,在保证性能和效果的情况下,可以有一种计算量小,速度快的边缘特征度量方法。
为解决上述技术问题,本发明采取以下技术方案:提出了一组新的边缘特征,其中的Gredge特征用来计算区域边缘方向,该特征计算区域的边缘方向十分简单,假设要计算矩形区域R的边缘方向,具体地,分别计算出这块矩形区域的上下左右四块大小相同的区域的平均灰度值(通过图像积分灰度图来计算),记为gup、gdown、gleft、gright那么可以用公式:
angle = arctan ( g right - g left g down - g up )
度量出区域R的边缘方向。arctan的计算是整个计算中最为耗时的一步了,但是由于gright-gleft、gdown-gup范围固定,arctan的计算可以借助于查表。
可以看出本发明所述的计算区域边缘方向的方法实现简单,且计算量很小,那么速度相对于现有的Hog可以快很多。
附图说明
图1——本发明中Gredge特征示意图
具体实施方式
下面进一步阐述本发明所述的这组特征。
Gredge特征用来描述灰度图片中某矩形区域的边缘方向与基准方向的差异程度,所以其属性包括矩形区域R和基准角度βbase,矩形区域是指矩形框左上角坐标(x,y)和矩形框高度(height),宽度(width),而基准角度βbase的范围是(-90,90]。
计算Gredge特征的特征值,需要分为四步。
第一步,以矩形框区域为中心,求其上下左右四个大小相同的区域,具体地,假设矩形区域R的位置为(x,y,w,h),其中x和y是矩形框左上角的坐标,w是矩形框的宽度,h是矩形框的高度,那么R的上下左右四个块的位置就是:up(x,y-h,w,h)、down(x,y+h,w,h)、left(x-w,y,w,h)、right(x+w,y,w,h),求四个区域的平均灰度值,记为gup、gdown、gleft、gright,具体地,平均灰度值的计算可以借助访问灰度积分图。这一步的工作量就是四次访问灰度积分图,然后做简单的加减法。
第二步,计算水平和垂直方向边缘,记为dx、dy,则公式如下:
dx=gright-gleft    (1)
dy=gdown-gup    (2)
第三步,计算边缘方向角βcurr,公式如下:
β curr = notexist d x = 0 , d y = 0 90 d x ≠ 0 , d y = 0 arctan ( d x d y ) × 1 π × 180 others - - - ( 3 )
具体地,由于dx、dy为整型,且范围固定为[-255,255],arctan求角度可以借助于查表。这样唯一耗时的求角度计算就变成了简单的查表。
第四步,计算Gredge特征值,用以下公式:
f gredge = 100 β curr doesnotexist | β curr - β base | | β curr - β base | ≤ 90 180 - | β curr - β base | | β curr - β base | > 90 - - - ( 4 )
从上面的四步可以看出Gredge特征值的计算量非常小。
Mapare特征用来度量两个位置边缘强度的绝对差异,其属性为矩形区域Ra和矩形区域Rb,其特征值的计算步骤分为两步。
第一步,分别对矩形框区域Ra和Rb求其上下左右四个大小相同的区域的平均灰度值,记为gup、gdown、gleft、gright
第二步,计算Ra的水平和垂直边缘dx、dy,公式如(1)、(2);
第三步,计算Ra的边缘强度ma,用如下公式:
m = d x 4 + d y 4 d x 2 + d y 2 - - - ( 5 )
由于dx、dy范围固定为[-255,255],且为整数,则可以创建表来查询边缘强度;
第四步,对区域Rb求边缘强度mb,计算步骤与求区域Ra的边缘强度一致;
第五步,计算Mapare特征值,用以下公式:
fmapare=ma-mb    (6)
Matrast特征可以加强对光照变化的鲁棒性,其属性与Mapare特征相同,为矩形区域Ra和Rb,其计算边缘强度ma、mb的方法也可参考Mapare特征。
Matrast特征值的计算用如下公式:
f matrast = m a - m b m a + m b m a + m b > 0 0 m a + m b = 0 - - - ( 7 )
本发明介绍的三种特征优缺点互补,而且三者的计算量都相对比较小,一起使用可以达到理想的效果,实际使用中这三种特征可以与分类器结合起来使用。强分类器由一组弱分类器组成,每个弱分类器中含有一个特征f、一个极性p和一个阀值θ,弱分类器的输出如下面公式所示:
h ( x , f , p , &theta; ) = 1 ifpf ( x ) < p&theta; 0 otherwise - - - ( 8 )
其中,x表示图片,f(x)表示图片上对应于特征f的特征值,特征f可以是fgredge、fmapare、fmatrast中的一种。极性p和阀值θ是通过分类器训练过程得到。
本发明和目前较为成功的Hog特征相比,优点是显而易见的,计算量要少很多,速度更快,而且对图像边缘检测的结果可以达到实际应用中的要求,所以在某些应用领域,例如行人检测,该组特征可以代替Hog特征,并且能够满足实际应用需要。

Claims (7)

1.一组新的图像边缘特征,包括Gredge特征、Mapare特征、Matrast特征,这三个特征互相补充,共同描述图像中的边缘;
所述Gredge特征用来描述边缘方向;
所述Mapare特征和Matrast特征用来度量边缘强度。
2.如权利要求1所述一组新的图像边缘特征,其特征在于将这组特征与分类器结合起来使用,可以快速地利用边缘信息对图像进行分类。
3.一种用来描述边缘方向的Gredge特征,其计算某矩形区域边缘方向的主要步骤如下:
(1)以矩形框区域为中心,通过积分图求其上下左右四个大小
相同的矩形区域的平均灰度值,记为gup、gdown、gleft、gright
(2)计算水平和垂直方向边缘,记为dx、dy,则公式如下:
dx=gright-gleft
dy=gdown-gup
(3)计算边缘方向角度βcurr,可以用以下公式(除去dy为0的特殊情况):
&beta; curr = arctan ( d x d y ) &times; 1 &pi; &times; 180 .
4.根据权利要求2所述一种用来描述边缘方向的Gredge特征,其特征在于步骤(3)中,求角度βcurr可以通过查表完成。
5.一种度量两个区域边缘强度的绝对差异的Mapare特征,假设这两个区域为矩形区域Ra和Rb,其特征值的计算步骤如下:
(1)计算Ra和Rb的边缘强度,记为ma、mb,则
(2)计算Mapare特征值,记为fmapare,则fmapare=ma-mb
6.如权利要求4所述一种度量两个区域边缘强度绝对差异的Mapare特征,其特征在于步骤(1)中,求边缘强度m可以查表计算。
7.Matrast特征度量两个区域Ra和Rb的边缘强度时较Mapare特征可以加强对光照变化的鲁棒性,假设Ra和Rb的边缘强度为ma、mb,则其特征值的计算为: f matrast = m a - m b m a + m b .
CN201310106129.6A 2013-03-29 2013-03-29 一组新的图像边缘特征 Pending CN104077589A (zh)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201310106129.6A CN104077589A (zh) 2013-03-29 2013-03-29 一组新的图像边缘特征

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201310106129.6A CN104077589A (zh) 2013-03-29 2013-03-29 一组新的图像边缘特征

Publications (1)

Publication Number Publication Date
CN104077589A true CN104077589A (zh) 2014-10-01

Family

ID=51598835

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201310106129.6A Pending CN104077589A (zh) 2013-03-29 2013-03-29 一组新的图像边缘特征

Country Status (1)

Country Link
CN (1) CN104077589A (zh)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104933719A (zh) * 2015-06-24 2015-09-23 辽宁工程技术大学 一种积分图块间距离检测图像边缘方法

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101211411A (zh) * 2007-12-21 2008-07-02 北京中星微电子有限公司 一种人体检测的方法和装置
CN101645135A (zh) * 2009-07-13 2010-02-10 北京中星微电子有限公司 一种人体检测方法和系统
US20120328160A1 (en) * 2011-06-27 2012-12-27 Office of Research Cooperation Foundation of Yeungnam University Method for detecting and recognizing objects of an image using haar-like features

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101211411A (zh) * 2007-12-21 2008-07-02 北京中星微电子有限公司 一种人体检测的方法和装置
CN101645135A (zh) * 2009-07-13 2010-02-10 北京中星微电子有限公司 一种人体检测方法和系统
US20120328160A1 (en) * 2011-06-27 2012-12-27 Office of Research Cooperation Foundation of Yeungnam University Method for detecting and recognizing objects of an image using haar-like features

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
阿查里雅: "《数字图像处理原理与应用》", 1 July 2007 *

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104933719A (zh) * 2015-06-24 2015-09-23 辽宁工程技术大学 一种积分图块间距离检测图像边缘方法
CN104933719B (zh) * 2015-06-24 2017-07-18 辽宁工程技术大学 一种积分图块间距离检测图像边缘方法

Similar Documents

Publication Publication Date Title
CN103208123B (zh) 图像分割方法与系统
CN103324936B (zh) 一种基于多传感器融合的车辆下边界检测方法
CN103530590B (zh) Dpm二维码识别系统
CN105469084A (zh) 一种靶标中心点快速提取方法及系统
EP2551796A3 (en) Image processing device identifying attribute of region included in image
CN103440478A (zh) 一种基于hog特征的人脸检测方法
CN104182728A (zh) 一种基于模式识别的车标自动定位与识别方法
CN104537342A (zh) 一种结合山脊边界检测及霍夫变换的快速车道线检测方法
CN104252711A (zh) 一种基于图像梯度方向码的匹配方法
CN105457908A (zh) 基于单目ccd的小尺寸玻璃面板的分拣快速定位方法及系统
CN104331690A (zh) 一种基于单张图像的肤色人脸检测方法及系统
CN107832674A (zh) 一种车道线检测方法
CN103020614A (zh) 基于时空兴趣点检测的人体运动识别方法
CN104090658A (zh) 基于hog特征的人体图像检测方法
CN104268595A (zh) 通用物件检测方法及系统
CN103914829A (zh) 一种含噪图像边缘检测方法
CN103955673B (zh) 一种基于头肩模型的人体识别方法
CN106846815A (zh) 一种高效的智能交通管理大数据分析系统
CN110473255A (zh) 一种基于多重网格划分的船舶系船柱定位方法
CN106157301A (zh) 一种用于图像边缘检测的阈值自确定方法及装置
CN109934151A (zh) 一种基于movidius计算芯片和Yolo face的人脸检测方法
CN105551048A (zh) 一种基于空间面片的三维角点检测方法
CN104077589A (zh) 一组新的图像边缘特征
CN102081741A (zh) 一种基于视觉注意原理的行人检测方法和系统
CN104657734B (zh) 一种道路交通标志检测方法及装置

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
DD01 Delivery of document by public notice

Addressee: Nanjing Yijizhi Information Technology Co., Ltd.

Document name: Notification of Publication and of Entering the Substantive Examination Stage of the Application for Invention

ASS Succession or assignment of patent right

Owner name: NANJING GUANCHAZHE INFORMATION TECHNOLOGY CO., LTD

Free format text: FORMER OWNER: NANJING YIJIZHI INFORMATION TECHNOLOGY CO., LTD.

Effective date: 20150909

C41 Transfer of patent application or patent right or utility model
TA01 Transfer of patent application right

Effective date of registration: 20150909

Address after: North building, Guanghua Road, Baixia District Nanjing city Jiangsu province 210014 network No. 1 Baixia high-tech park Stenden Building 5 layer

Applicant after: NANJING SHICHAZHE INFORMATION TECHNOLOGY CO., LTD.

Address before: Guanghua Road, Baixia District Nanjing city Jiangsu province 210014 No. 166 East Midlands Building 5 layer

Applicant before: Nanjing Yijizhi Information Technology Co., Ltd.

WD01 Invention patent application deemed withdrawn after publication
WD01 Invention patent application deemed withdrawn after publication

Application publication date: 20141001