当前位置:网站首页>[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()
边栏推荐
猜你喜欢

Industry-university-research application to build an open source talent ecosystem | 2022 Open Atom Global Open Source Summit Education Sub-Forum was successfully held

STM32HAL库修改Hal_Delay为us级延时

ERP生产作业控制 金蝶

Unity Fighter

(八)Math 类、Arrays 类、System类、Biglnteger 和 BigDecimal 类、日期类

强化学习:从入门到入坑再到拉屎

高等数学---第九章二重积分

【debug锦集】Expected input batch_size (1) to match target batch_size (0)

(5) final, abstract class, interface, inner class

益智类游戏关卡设计:逆推法--巧解益智类游戏关卡设计
随机推荐
No qualifying bean of type question
高斯分布及其极大似然估计
两个地址池r2负责管地址池r1负责管dhcp中继
Knowledge Distillation 7: Detailed Explanation of Knowledge Distillation Code
(4) Recursion, variable parameters, access modifiers, understanding main method, code block
[shell basics] determine whether the directory is empty
(5) final, abstract class, interface, inner class
unity2d game
Why don't you programmers make a living off your own projects?And have to work for someone else?
On Governance and Innovation | 2022 OpenAtom Global Open Source Summit OpenAnolis sub-forum was successfully held
【小土堆补充】Pytorch学习笔记_Anaconda虚拟环境使用
Unity URP渲染管线摄像机核心机制剖析
Minesweeper game - C language
VScode+ESP32 quickly install ESP-IDF plugin
【云原生】DevOps(五):集成Harbor
Vue项目通过node连接MySQL数据库并实现增删改查操作
Open Source Database Innovation in the Digital Economy Era | 2022 Open Atom Global Open Source Summit Database Sub-Forum Successfully Held
WeChat applet uses cloud functions to update and add cloud database nested array elements
MySQL based operations
【SemiDrive源码分析】【MailBox核间通信】44 - 基于Mailbox IPCC RPC 实现核间通信(RTOS侧 IPCC_RPC Server 消息接收及回复 原理分析篇)