图像阈值化处理

Posted mrc-369-com

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图像阈值化处理相关的知识,希望对你有一定的参考价值。

#Author C
import cv2
import os
#腐蚀
# kernel=np.ones((5,5),np.uint8)
# erosion=cv2.erode(img,kernel,iterations=1)
list=[]
for filename in os.listdir(r"C:UsersUaenaDesktopcrack"):
route=r"C:UsersUaenaDesktopcrack\"+filename
list.append(route)
# print(list)
for i in range(len(list)):
img=cv2.imread(list[i])

img=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)#转换为灰度图像
blurred=cv2.GaussianBlur(img,(5,5),0)#高斯滤波 https://baike.so.com/doc/1781738-1884180.html
# print(blurred)

(T,thresh)=cv2.threshold(blurred,11,100,cv2.THRESH_BINARY )#二值化处理,阈值为11,低于阈值的像素点灰度值置为0;高于阈值的值置为参数3
#(T, thresh)=cv2.threshold(blurred,11,100,cv2.THRESH_TRUNC)#小于阈值的像素点灰度值不变,大于阈值的像素点置为0
(T, threshInv) = cv2.threshold(blurred, 10, 100, cv2.THRESH_BINARY_INV)#反阈值化,大于阈值的像素点灰度值置为0,小于阈值的值置为参数3
    #小于阈值的像素点灰度值不变,大于阈值的像素点置为0,其中参数3任取
    ret,thresh4 = cv2.threshold(grayImage,127,255,cv2.THRESH_TOZERO)
    cv2.imshow(‘BINARY_TOZERO‘,thresh4)


    #大于阈值的像素点灰度值不变,小于阈值的像素点置为0,其中参数3任取
    ret,thresh5 = cv2.threshold(grayImage,127,255,cv2.THRESH_TOZERO_INV)
    cv2.imshow(‘BINARY_TOZERO_INV‘,thresh5)

cv2.imwrite(r"C:UsersUaenaDesktopoutput\%s.jpg"%(i),threshInv)
# cv2.imshow("3",threshInv)






















以上是关于图像阈值化处理的主要内容,如果未能解决你的问题,请参考以下文章

跟我学Python图像处理丨5种图像阈值化处理及算法对比

图像的OTSU阈值化双阈值化半阈值化的原理及OpenCV代码实现

二值化处理与边缘检测

[Python图像处理]七.图像阈值化处理及算法比对

如何对图像进行阈值处理?

图像二值化处理Java