当前位置:网站首页>[py script] batch binarization processing images
[py script] batch binarization processing images
2022-07-31 04:44:00 【jingzilideniu】
参考:pythonImplement batch image binarization
Note in the blog above阈值类型表的介绍:
cv2.THRESH_BINARY
cv2.THRESH_BINARY_INV
cv2.THRESH_TRUNC
cv2.THRESH_TOZERO
cv2.THRESH_TOZERO_INV
single image processing:
import cv2
img = cv2.imread("166dian.jpg")
print(img)
# 先进行灰度化处理,再进行二值化
Grayimg = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 127是二值化阈值,大于255的像素值都置为0
ret, thresh = cv2.threshold(Grayimg, 127, 255, cv2.THRESH_BINARY)
cv2.imwrite('166dian1.jpg', thresh)
Input one output six results:
import cv2
import numpy as np
from matplotlib import pyplot as plt
img=cv2.imread('166dian.jpg')
# 中值滤波
# img = cv2.medianBlur(img, 5)
GrayImage=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
ret,thresh1=cv2.threshold(GrayImage,127,255,cv2.THRESH_BINARY)
ret,thresh2=cv2.threshold(GrayImage,127,255,cv2.THRESH_BINARY_INV)
ret,thresh3=cv2.threshold(GrayImage,127,255,cv2.THRESH_TRUNC)
ret,thresh4=cv2.threshold(GrayImage,127,255,cv2.THRESH_TOZERO)
ret,thresh5=cv2.threshold(GrayImage,127,255,cv2.THRESH_TOZERO_INV)
titles = ['Gray Image','BINARY','BINARY_INV','TRUNC','TOZERO','TOZERO_INV']
images = [GrayImage, 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()
Batch processing of pictures in a folder:
注意:
1.The route should preferably be in English
2. Slightly modified from the original blog
import os
import cv2
from PIL import Image
def binarization():
# 获取目录下所有图片名
filename = os.listdir(r"F:\lianxi\lianxi\py\input")#F:\python_Demo\DeepLearning\tools3\shapes\cmutestGT
print(filename)
# os.listdir() 方法用于返回指定的文件夹包含的文件或文件夹的名字的列表.
base_dir = r"F:\lianxi\lianxi\py\input" # input
new_dir = r"F:\lianxi\lianxi\py\output" # output
for img in filename:
name = img
path1 = os.path.join(base_dir, img)
print(name)
img = cv2.imread(path1)
#print(img)
Grayimg = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
ret, thresh = cv2.threshold(Grayimg, 127, 255, cv2.THRESH_BINARY)
cv2.imwrite('name.jpg', thresh)
image = Image.open('name.jpg')
# 有需要可对图像进行大小调整
# image = image.resize((350, 350),Image.ANTIALIAS)
path = os.path.join(new_dir, name)
image.save(path)
binarization()
边栏推荐
- BUG destroyer!!Practical debugging skills are super comprehensive
- WeChat applet uses cloud functions to update and add cloud database nested array elements
- 【线性神经网络】softmax回归
- 剑指offer专项突击版第15天
- Learning DAVID Database (1)
- SOLVED: After accidentally uninstalling pip (two ways to manually install pip)
- Knowledge Distillation 7: Detailed Explanation of Knowledge Distillation Code
- pom文件成橘红色未加载的解决方案
- MySQL基础操作
- MATLAB/Simulink & & STM32CubeMX tool chain completes model-based design development (MBD) (three)
猜你喜欢
随机推荐
[AUTOSAR-RTE]-5-Explicit (explicit) and Implicit (implicit) Sender-Receiver communication
ERROR 1064 (42000) You have an error in your SQL syntax; check the manual that corresponds to your
[shell basics] determine whether the directory is empty
Smartcom Programming Level 4 - Magic Academy Lesson 6
Win10 CUDA CUDNN 安装配置(torch paddlepaddle)
qlib自动化quant
Understanding of the presence of a large number of close_wait states
三道leetcode上的oj题
PCL 计算点云坐标最值及其索引
三子棋的代码实现
Safety 20220715
From scratch, a mirror to the end, a pure system builds a grasscutter (Grasscutter)
Vue项目通过node连接MySQL数据库并实现增删改查操作
XSS靶场(三)prompt to win
[Paper reading] Mastering the game of Go with deep neural networks and tree search
The idea project obviously has dependencies, but the file is not displayed, Cannot resolve symbol 'XXX'
已解决(最新版selenium框架元素定位报错)NameError: name ‘By‘ is not defined
Win10 CUDA CUDNN installation configuration (torch paddlepaddle)
MySQL模糊查询可以使用INSTR替代LIKE
【py脚本】批量二值化处理图像









