码迷,mamicode.com
首页 > 其他好文 > 详细

二值化的cv2 threshold函数

时间:2018-12-24 13:26:05      阅读:930      评论:0      收藏:0      [点我收藏+]

标签:大神   weight   col   sql   pyplot   iss   tinyxml   python   color   

像素高于阈值时,给像素赋予新值,否则,赋予另外一种颜色。函数是cv2.threshold() 
cv2.threshold(src,thresh,maxval,type[,dst])->retval,dst 
作用:用于获取二元值的灰度图像 
thresh:阈值,maxval:在二元阈值THRESH_BINARY和逆二元阈值THRESH_BINARY_INV中使用的最大值 
返回值retval其实就是阈值 

type:使用的阈值类型 

例子:

 

#python 3.5.3  蔡军生    
#http://edu.csdn.net/course/detail/2592    
#

import cv2
import matplotlib.pyplot as plt

img = cv2.imread(‘test1.jpg‘,0) #直接读为灰度图像

#二值化
ret,thresh1 = cv2.threshold(img,1,255,cv2.THRESH_BINARY)

ret,thresh2 = cv2.threshold(img,127,255,cv2.THRESH_BINARY_INV)
ret,thresh3 = cv2.threshold(img,127,255,cv2.THRESH_TRUNC)
ret,thresh4 = cv2.threshold(img,127,255,cv2.THRESH_TOZERO)
ret,thresh5 = cv2.threshold(img,127,255,cv2.THRESH_TOZERO_INV)
titles = [‘img‘,‘BINARY‘,‘BINARY_INV‘,‘TRUNC‘,‘TOZERO‘,‘TOZERO_INV‘]
images = [img,thresh1,thresh2,thresh3,thresh4,thresh5]
for i in range(6):
    plt.subplot(2,3,i+1),plt.imshow(images[i],‘gray‘)
    plt.title(titles[i])
    plt.xticks([]),plt.yticks([])
plt.show()

输出结果:

技术分享图片

技术分享图片

可见使用这个函数可以获取轮廓图案。

 

1. TensorFlow入门基本教程

 

2. C++标准模板库从入门到精通 

 

 

 

 

3.跟老菜鸟学C++

4. 跟老菜鸟学python

5. 在VC2015里学会使用tinyxml库

6. 在Windows下SVN的版本管理与实战 

 http://edu.csdn.net/course/detail/2579

7.Visual Studio 2015开发C++程序的基本使用 

http://edu.csdn.net/course/detail/2570

8.在VC2015里使用protobuf协议

9.在VC2015里学会使用MySQL数据库

 
 

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://www.cnblogs.com/captainbed

二值化的cv2 threshold函数

标签:大神   weight   col   sql   pyplot   iss   tinyxml   python   color   

原文地址:https://www.cnblogs.com/skiwnchh/p/10167930.html

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