-
Notifications
You must be signed in to change notification settings - Fork 0
/
segment_second.py
241 lines (223 loc) · 5.52 KB
/
segment_second.py
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# #!/usr/bin/python
# -*- coding: utf-8 -*-
from PIL import Image,ImageDraw
from numpy import *
from scipy.ndimage import filters
# 求梯度函数
def Magnitude(image) :
im = array(image)
imx = zeros(im.shape)
filters.sobel(im,1,imx)
imy = zeros(im.shape)
filters.sobel(im,0,imy)
magnitude = sqrt(imx ** 2 + imy ** 2)
imag = Image.fromarray(magnitude)
imx = Image.fromarray(imx)
imy = Image.fromarray(imy)
return (imag,imx,imy)
def First_Pro(image,image0,image1,image2) :
width = image.size[0]
height = image.size[1]
#iFirst = Image.new("L",(width,height),255)
#Draw = ImageDraw.Draw(iFirst)
iResult = Image.new("L",(width,height),255)
a = []
b = []
temp = 0
num = 0
for each in range(3) :
if each == 0 :
a = []
b = []
iTemp = image0.copy()
# 梯度垂直
for x in range(width) :
for y in range(height) :
temp += iTemp.getpixel((x,y))
a.append(temp)
temp = 0
MeanH = sum(a) / width
for one in range(len(a)) :
if a[one] < MeanH :
num += 1
temp += a[one]
Lower_MeanH = temp / num
temp = 0
num = 0
for i in range(len(a)) :
if a[i] > Lower_MeanH :
left0 = i
break
for i in range(len(a)) :
if a[len(a)-i-1] > Lower_MeanH :
right0 = len(a) - i - 1
break
# 梯度水平
for y in range(height) :
for x in range(width) :
temp += iTemp.getpixel((x,y))
b.append(temp)
temp = 0
MeanV = sum(b) / height
for one in range(len(b)) :
if b[one] < MeanV :
num += 1
temp += b[one]
Lower_MeanV = temp / num
temp = 0
num = 0
for j in range(len(b)) :
if b[j] > Lower_MeanV :
top0 = j
break
for j in range(len(b)) :
if b[len(b)-j-1] > Lower_MeanV :
bottom0 = len(b) - j - 1
break
elif each == 1 :
a = []
b = []
iTemp = image1.copy()
# 梯度x分量垂直
for x in range(width) :
for y in range(height) :
temp += iTemp.getpixel((x,y))
a.append(temp)
temp = 0
MeanH = sum(a) / width
for one in range(len(a)) :
if a[one] < MeanH :
num += 1
temp += a[one]
Lower_MeanH = temp / num
temp = 0
num = 0
for i in range(len(a)) :
if a[i] > Lower_MeanH :
left1 = i
break
for i in range(len(a)) :
if a[len(a)-i-1] > Lower_MeanH :
right1 = len(a) - i - 1
break
# 梯度x分量水平
for y in range(height) :
for x in range(width) :
temp += iTemp.getpixel((x,y))
b.append(temp)
temp = 0
MeanV = sum(b) / height
for one in range(len(b)) :
if b[one] < MeanV :
num += 1
temp += b[one]
Lower_MeanV = temp / num
temp = 0
num = 0
for j in range(len(b)) :
if b[j] > Lower_MeanV :
top1 = j
break
for j in range(len(b)) :
if b[len(b)-j-1] > Lower_MeanV :
bottom1 = len(b) - j - 1
break
elif each == 2 :
a = []
b = []
iTemp = image2.copy()
# 梯度y分量垂直
for x in range(width) :
for y in range(height) :
temp += iTemp.getpixel((x,y))
a.append(temp)
temp = 0
MeanH = sum(a) / width
for one in range(len(a)) :
if a[one] < MeanH :
num += 1
temp += a[one]
Lower_MeanH = temp / num
temp = 0
num = 0
for i in range(len(a)) :
if a[i] > Lower_MeanH :
left2 = i
break
for i in range(len(a)) :
if a[len(a)-i-1] > Lower_MeanH :
right2 = len(a) - i - 1
break
# 梯度y分量水平
for y in range(height) :
for x in range(width) :
temp += iTemp.getpixel((x,y))
b.append(temp)
temp = 0
MeanV = sum(b) / height
for one in range(len(b)) :
if b[one] < MeanV :
num += 1
temp += b[one]
Lower_MeanV = temp / num
temp = 0
num = 0
for j in range(len(b)) :
if b[j] > Lower_MeanV :
top2 = j
break
for j in range(len(b)) :
if b[len(b)-j-1] > Lower_MeanV :
bottom2 = len(b) - j - 1
break
'''
for k in range(width) :
a[k] = a[k]/height
x = (k,255)
y = (k,255-a[k])
Draw.line((x,y),fill = 20)
'''
left = [left0,left1,left2]
right = [right0,right1,right2]
top = [top0,top1,top2]
bottom = [bottom0,bottom1,bottom2]
final_left = max(left)
final_right = min(right)
final_top = max(top)
final_bottom = min(bottom)
print final_left,final_right,final_top,final_bottom
for y in range(height) :
for x in range(width) :
if y in range(final_top,final_bottom) and x in range(final_left,final_right) :
iResult.putpixel((x,y),0)
else :
iResult.putpixel((x,y),255)
return iResult
'''
# 基于灰度图的开闭运算
def Change(image,flag,radius) :
width = image.size[0]
height = image.size[1]
iChange = Image.new("L",(width,height),255)
for y in range(height) :
for x in range(width) :
a = []
for n in range(2 * radius + 1) :
for m in range(2 * radius + 1) :
if -1 < y-radius+n < height and -1 < x-radius+m < width :
a.append(image.getpixel((x-radius+m,y-radius+n)))
if flag == 0 :
k = max(a) # 腐蚀操作
else :
k = min(a) # 膨胀操作
iChange.putpixel((x,y),k)
return iChange
'''
im = Image.open("D:\\Python27\\picture\\1.bmp")
im = im.convert("L")
(iMag,imx,imy) = Magnitude(im)
iMag = iMag.convert("L")
imx = imx.convert("L")
imy = imy.convert("L") # !!!
iResult = First_Pro(im,iMag,imx,imy)
iResult.save("D:\\Python27\\picture\\1_result.bmp","BMP")