去除毛刺的实验

样例图片:

img

存在问题

一番实验过后发现效果不行

算法细节(补充)

根据讨论纪要中的算法,制定了两项的测试方案:

  1. 对全图取2X2的像素矩阵为一个单位,根据人为确定的阈值(如10与10附近的一些值),来确定划分边,结果发现被标记为一次划分的边不一定与毛刺有关联
  2. 为了提高实验效率,随机抽取多组肉眼可见的带有毛刺的局部样例,利用讨论纪要中的划分方式(将分割边连在一起,划分出两个部分,噪声被划分在哪一个部分就用该部分最接近与噪声值的像素值进行赋值)进行划分测试

分析原因

利用脚本将图片绘制到execl表格

代码示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# -*- coding: utf-8 -*-

from PIL import Image
import openpyxl
import openpyxl.styles
from openpyxl.styles import PatternFill
from openpyxl.utils import get_column_letter
from progressbar import *

def RGB_to_Hex(rgb):
"""
RGB颜色转换成16进制颜色
:param rgb:
:return:
"""
RGB = rgb.split(',') # 将RGB格式划分开来
color = ''
for i in RGB:
num = int(i)
# 将R、G、B分别转化为16进制拼接转换并大写 hex() 函数用于将10进制整数转换成16进制,以字符串形式表示
color += str(hex(num))[-2:].replace('x', '0').upper()
return color

def img2excel(img_path,excelout_path):
"""
图片转换成excel
:param img_path: 图片地址
:param excelout_path: excel保存地址
:return:
"""
img_src = Image.open(img_path)
#宽高
img_width = img_src.size[0]
img_height=img_src.size[1]
print("图片宽%s,高%s"%(img_width,img_height))
# 类型
# print(img_src.mode)
if img_src.mode != "RGB":
img_src = img_src.convert('RGB')

str_strlist = img_src.load()
wb=openpyxl.Workbook()
wb.save(excelout_path)
wb=openpyxl.load_workbook(excelout_path)
sheet=wb["Sheet"]
sheet.title="img2excel"
cell_width = 1.0
cell_height = cell_width * (2.2862 / 0.3612)
print("正在疯狂生成excel,请耐心等待...")
#进度条
widgets=['进度:',Percentage(),'',Bar('#'),'',Timer(),' ', ETA(), ' ']
pb=ProgressBar(widgets=widgets)
for w in pb(range(img_width)):
for h in range(img_height):
data = str_strlist[w,h]
# 把元组rgb颜色变成字符串,转换成16进制颜色(1,2,3)-->'1,2,3'
color=str(data).replace("(","").replace(")","")
#16进制的颜色,不带前面#号的,要#自己拼接到color前面即可
color=RGB_to_Hex(color)
# 设置填充颜色为color,solid参数表示填充实色
fille=PatternFill("solid",fgColor=color)
sheet.cell(h+1,w+1).fill=fille
print("生成完成,正在设置单元格格式...")
for i in range(1, sheet.max_row+1):
sheet.row_dimensions[i].height=cell_height
for i in range(1, sheet.max_column+1):
sheet.column_dimensions[get_column_letter(i)].width = cell_width
print('格式设置完成,正在保存excel...')
wb.save(excelout_path)
img_src.close()
print("保存excel成功!请打开[%s]查看"%excelout_path)



if __name__=='__main__':
import sys,os
if len(sys.argv)!=3:
print("请输入图片地址和excel保存的地址\n"
"例如命令行输入 python img2excel_user.py D:/result.png D:/outExcel.xlsx")
sys.exit(0)
else:
img_virify=['.jpg','.png','.gif','.bmp','.jpeg','.jpe','.jfif']
excel_virify=['.xlsx','.xlsm','.xltx','.xltm']

# 图片地址
img_path=sys.argv[1]
# excel保存地址
excelout_path=sys.argv[2]

endName=os.path.splitext(img_path)
if endName[1] not in img_virify:
print("请选择支持的图片类型",img_virify)
sys.exit(0)

endName_excel=os.path.splitext(excelout_path)
if endName_excel[1] not in excel_virify:
print("excel 格式不支持,请选择支持的格式",excel_virify)
sys.exit(0)
img2excel(r""+img_path+"",excelout_path)

局部样例

举例:

1

方框选中区域为明显的毛刺区域,这也是比较典型的毛刺种类之一

B通道数据示例

2

对于数据的划分如下图:

3

很明显经过分割以后,这样的状态仍然不能解决毛刺问题,反而还会让毛刺问题更加严重

而在讨论纪要中提到的求最短路划分的方法不能满足所有情况,理由如下:

  • 如下图是不能用划分来去除毛刺的,被改变的划分不一定是合理的

    4

  • 有的会被判断为毛刺的地方可能就是图片本身所需要的(原图就应该是如此),如下图蓝色部分应该是越“尖”越好

5