前言
轮廓自身的一些属性特征及轮廓所包围对象的特征对于描述图像具有重要意义。本篇博文将介绍几个轮廓自身的属性特征及轮廓包围对象的特征。
宽高比
在轮廓中,我们可以通过宽高比来描述轮廓,例如矩形的轮廓宽高比为:
宽高比=宽度/高度
下面,我们来计算矩形轮廓的宽高比,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import cv2
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
x, y, w, h = cv2.boundingrect(contours[ 0 ])
cv2.rectangle(img, (x, y), (x + w, y + h), ( 0 , 0 , 255 ), 3 )
cv2.imshow( "img1" , img)
aspectratio = float (w) / h
print (aspectratio)
cv2.waitkey()
cv2.destroyallwindows()
|
运行之后,我们可以得到轮廓的宽高比约为3:
extend
我们还可以使用轮廓面积与矩形边界面积之比extend来描述图像及其轮廓特征,数学计算公式图下:
extend=轮廓面积/矩形边界面积
下面,我们来计算extend,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import cv2
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
x, y, w, h = cv2.boundingrect(contours[ 0 ])
rectarea = w * h #矩形边界面积
cntarea = cv2.contourarea(contours[ 0 ]) #轮廓面积
extend = float (cntarea) / rectarea
print (extend)
|
本例中,轮廓面积与矩形边界面积的比值extend大约为0.8:
solidity
我们还可以使用轮廓面积与凸包面积之比solidity来衡量图像,轮廓以及凸包的特征。其数学计算公式为:
slidity=轮廓面积/凸包面积
下面,我们来计算slidity,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import cv2
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
x, y, w, h = cv2.boundingrect(contours[ 0 ])
cntarea = cv2.contourarea(contours[ 0 ]) #轮廓面积
hull = cv2.convexhull(contours[ 0 ])
hullarea = cv2.contourarea(hull) #凸包面积
solidity = float (cntarea) / hullarea
print (solidity)
|
运行之后,本例轮廓面积与凸包面积的比值solidity约为1:
等效直径
在opencv中,我们还可以使用等效直径来衡量轮廓的特征值,该值是与轮廓面积相等的圆形的直径。其数学计算公式为:
下面,我们来计算与轮廓面积相等的圆形直径,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import cv2
import numpy as np
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
x, y, w, h = cv2.boundingrect(contours[ 0 ])
cntarea = cv2.contourarea(contours[ 0 ]) #轮廓面积
equidiameter = np.sqrt( 4 * cntarea / np.pi)
print (equidiameter)
cv2.circle(img,( 100 , 100 ), int (equidiameter / 2 ),( 0 , 255 , 0 ), 3 )
cv2.imshow( "img1" ,img)
cv2.waitkey()
cv2.destroyallwindows()
|
运行之后,我们得到其等效直径约为145:
方向
在opencv中,函数cv2.fitellipse()可以用来构建最优拟合椭圆,还可以在返回值内分别返回椭圆的中心点,轴长,旋转角度信息。使用这种形式,能够直观地获取椭圆的方向等信息。
函数cv2.fitellipse()返回值为:
(x,y):椭圆的中心点
(ma,ma):椭圆水平方向轴与垂直方向轴的长度
angle:椭圆的旋转角度
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import cv2
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
ellipsis = cv2.fitellipse(contours[ 0 ])
(x, y), (ma, ma), angle = cv2.fitellipse(contours[ 0 ])
print ((x, y), (ma, ma), angle)
cv2.ellipse(img, ellipsis, ( 0 , 255 , 0 ), 2 )
cv2.imshow( "img1" , img)
cv2.waitkey()
cv2.destroyallwindows()
|
本来就是椭圆图,下面拟合后正好也是椭圆:
掩摸和像素点
有时候,我们还像获取某对象的掩摸图像及其对应的点。在opencv中,它还提供了cv2.findnonzero()函数用于获取一个图像内的轮廓点位置,其完整定义如下:
1
|
def findnonzero(src, idx = none):
|
src:要查找非零元素的图像
idx:返回值,表示非0元素的索引位置。具体格式为(行号,列号)
下面,我们实测该函数,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import cv2
import numpy as np
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
mask = np.zeros(gray.shape,np.uint8)
cv2.drawcontours(mask,[contours[ 0 ]], 0 , 255 , 2 )
pixelpoints = cv2.findnonzero(mask)
print (pixelpoints)
cv2.imshow( "img1" , mask)
cv2.waitkey()
cv2.destroyallwindows()
|
运行之后,我们会得到轮廓点位置:
最大值,最小值以及它们的位置
在opencv中,它提供cv2.minmaxloc()函数获取指定对象内最大值,最小值以及位置等信息,其完整定义如下:
1
|
def minmaxloc(src, mask = none):
|
src:单通道图像
mask:掩摸,通过使用掩摸图像,得到掩膜指定区域内的最值信息
该函数返回4个值:最小值,最大值,最小值位置,最大值位置。
下面,我们来获取这些值,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import cv2
import numpy as np
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
mask = np.zeros(gray.shape, np.uint8)
cv2.drawcontours(mask, [contours[ 0 ]], 0 , 255 , 2 )
min , max , min_loc, max_loc = cv2.minmaxloc(gray, mask)
print ( min , max , min_loc, max_loc)
|
运行之后,控制台输出4个值:
平均颜色及平均灰度
在opencv中,它给我们提供cv2.mean()函数计算一个对象的平均颜色与平均灰度。其完整定义如下:
1
|
def mean(src, mask = none):
|
参数与上面两个小节一样,这里不在赘述。下面,我们来使用这个函数,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import cv2
import numpy as np
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
mask = np.zeros(gray.shape,np.uint8)
cv2.drawcontours(mask,[contours[ 0 ]], 0 , 255 , 2 )
mean = cv2.mean(img,mask)
|
运行之后,输出4个值:rgb以及a通道的均值:
极点
有时候,我们希望获取某个对象内的极点,比如最左,最右,最上,最下等。在opencv中,它给我们提供了以下方法进行获取:
1
2
3
4
|
left = tuple (cnt[cnt[:,:, 0 ].argmin()][ 0 ])
right = tuple (cnt[cnt[:,:, 0 ].argmax()][ 0 ])
top = tuple (cnt[cnt[:,:, 1 ].argmin()][ 0 ])
bottom = tuple (cnt[cnt[:,:, 1 ].argmax()][ 0 ])
|
下面,我们来通过这些方法获取,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import cv2
import numpy as np
img = cv2.imread( "26_1.jpg" )
cv2.imshow( "img" , img)
# 转换为灰度图像
gray = cv2.cvtcolor(img, cv2.color_bgr2gray)
ret, binary = cv2.threshold(gray, 127 , 255 , cv2.thresh_binary)
contours, hierarchy = cv2.findcontours(binary, cv2.retr_list, cv2.chain_approx_simple)
mask = np.zeros(img.shape, np.uint8)
cnt = contours[ 0 ]
left = tuple (cnt[cnt[:, :, 0 ].argmin()][ 0 ])
right = tuple (cnt[cnt[:, :, 0 ].argmax()][ 0 ])
top = tuple (cnt[cnt[:, :, 1 ].argmin()][ 0 ])
bottom = tuple (cnt[cnt[:, :, 1 ].argmax()][ 0 ])
print (left, right, top, bottom)
font = cv2.font_hershey_simplex
cv2.puttext(img, "left" , left, font, 1 , ( 0 , 255 , 0 ), 2 )
cv2.puttext(img, "right" , right, font, 1 , ( 0 , 255 , 0 ), 2 )
cv2.puttext(img, "top" , top, font, 1 , ( 0 , 255 , 0 ), 2 )
cv2.puttext(img, "bottom" , bottom, font, 1 , ( 0 , 255 , 0 ), 2 )
cv2.imshow( "result" ,img)
cv2.waitkey()
cv2.destroyallwindows()
|
运行之后,值与效果如下:
到此这篇关于opencv-python实现轮廓的特征值的文章就介绍到这了,更多相关opencv 轮廓的特征值内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://liyuanjinglyj.blog.csdn.net/article/details/113934985