1 Star 0 Fork 0

念古/opencv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
自适应阀值.py 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
念古 提交于 2019-12-30 17:00 . 上传
import cv2
import numpy as np
from matplotlib import pyplot as plt
#选择th2实心,th3空心
img = cv2.imread('/home/niangu/桌面/答题卡识别/4.jpeg',0)
img = cv2.medianBlur(img, 5)
ret, th1 = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY)
th2 = cv2.adaptiveThreshold(img, 255, cv2.ADAPTIVE_THRESH_MEAN_C,cv2.THRESH_BINARY,11,2)
th3 = cv2.adaptiveThreshold(img, 255, cv2.ADAPTIVE_THRESH_GAUSSIAN_C, cv2.THRESH_BINARY,11,2)
titles = ['Original Image', 'Global Thresholding (v = 127)',
'Adaptive Mean Thresholding', 'Adaptive Gaussian Thresholding']
images = [img, th1, th2, th3]
"""
for i in range(4):
plt.subplot(2,2,i+1)
plt.imshow(images[i],'gray')
plt.title(titles[i])
plt.xticks([])
plt.yticks([])
plt.show()
"""
cv2.namedWindow('img', cv2.WINDOW_NORMAL)
cv2.imshow('img', img)
cv2.namedWindow('th1', cv2.WINDOW_NORMAL)
cv2.imshow('th1', th1)
cv2.namedWindow('th2', cv2.WINDOW_NORMAL)
cv2.imshow('th2', th2)
cv2.namedWindow('th3', cv2.WINDOW_NORMAL)
cv2.imshow('th3', th3)
cv2.waitKey(0)&0xFF
cv2.destroyAllWindows()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/niangu/opencv.git
[email protected]:niangu/opencv.git
niangu
opencv
opencv
master

搜索帮助