-
Notifications
You must be signed in to change notification settings - Fork 677
/
U-NET Image Segmentation
152 lines (119 loc) · 4.21 KB
/
U-NET Image Segmentation
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
import cv2
import keras
import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import norm
from keras.layers import Input, Dense, Lambda, Merge
from keras.models import Model
from keras import backend as K
from keras import objectives
from keras.layers.core import Reshape
from __future__ import print_function
import numpy as np
from keras.models import Sequential
from keras.layers import Dense, Dropout, Activation, Flatten, Highway
from keras.layers import Convolution2D, MaxPooling2D
from keras.layers.convolutional import Convolution2D, MaxPooling2D, ZeroPadding2D, UpSampling2D
from keras.utils import np_utils
from keras.layers.normalization import BatchNormalization
import os
from keras.optimizers import SGD
img = cv2.imread('Brain_CT.png')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
import matplotlib.pyplot as plt
plt.imshow(gray,cmap=plt.get_cmap('gray'))
def norm(x):
return (x-np.min(x))/(np.max(x)-np.min(x))
x_train0=cv2.resize(gray, (60,60), interpolation = cv2.INTER_AREA)
x_train01=norm(x_train0)
x_train=x_train01.reshape((1,60,60,1))
shape2=54
x_train20=cv2.resize(gray, (shape2,shape2), interpolation = cv2.INTER_AREA)
x_train21=norm(x_train20)
x_train2=x_train21.reshape((1,shape2,shape2,1))
plt.imshow(x_train.reshape((60,60)),cmap=plt.get_cmap('gray'))
shape=60
batch_size = 30
nb_classes = 10
img_rows, img_cols = shape, shape
nb_filters = 32
pool_size = (2, 2)
kernel_size = (3, 3)
input_shape=(shape,shape,1)
reg=0.001
learning_rate = 0.013
decay_rate = 5e-5
momentum = 0.9
sgd = SGD(lr=learning_rate,momentum=momentum, decay=decay_rate, nesterov=True)
shape2
recog0 = Sequential()
recog0.add(Convolution2D(20, 3,3,
border_mode='valid',
input_shape=input_shape))
recog0.add(BatchNormalization(mode=2))
recog=recog0
recog.add(Activation('relu'))
recog.add(MaxPooling2D(pool_size=(2,2)))
recog.add(UpSampling2D(size=(2, 2)))
recog.add(Convolution2D(20, 3, 3,init='glorot_uniform'))
recog.add(BatchNormalization(mode=2))
recog.add(Activation('relu'))
for i in range(0,2):
print(i,recog0.layers[i].name)
recog_res=recog0
part=1
recog0.layers[part].name
get_0_layer_output = K.function([recog0.layers[0].input, K.learning_phase()],[recog0.layers[part].output])
get_0_layer_output([x_train, 0])[0][0]
pred=[np.argmax(get_0_layer_output([x_train, 0])[0][i]) for i in range(0,len(x_train))]
loss=x_train-pred
loss=loss.astype('float32')
recog_res.add(Lambda(lambda x: x,input_shape=(56,56,20),output_shape=(56,56,20)))
recog2=Sequential()
recog2.add(Merge([recog,recog_res],mode='ave'))
recog2.add(Activation('relu'))
recog2.add(Convolution2D(20, 3, 3,init='glorot_uniform'))
recog2.add(BatchNormalization(mode=2))
recog2.add(Activation('relu'))
recog2.add(Convolution2D(1, 1, 1,init='glorot_uniform'))
recog2.add(Reshape((shape2,shape2,1)))
## SOFTMAX P/ RGB
recog2.add(Activation('relu'))
recog2.compile(loss='mean_squared_error', optimizer=sgd,metrics = ['mae'])
recog2.summary()
x_train3=x_train2.reshape((1,shape2,shape2,1))
recog2.fit(x_train,x_train3,
nb_epoch=25,
batch_size=30,verbose=1)
filename = "U-Net_Cells_MinusPool_MinusUp_Brain_Ave_CopyLayer.hdf5"
recog2.load_weights(filename)
recog2.compile(loss='mean_squared_error', optimizer='adam')
a=norm(recog2.predict(x_train))
b=a.reshape((54*54,))
b[b<.25]=0
b[b>.5]=0
from matplotlib.colors import LinearSegmentedColormap
n_classes=2
colors = [(0, 0, 0), (0, 1, 0), (0, 0, 1),(0,1,0)]
cm = LinearSegmentedColormap.from_list(
a, colors, N=2)
plt.figure(figsize=(10,20))
ax = plt.subplot(1, 3, 1)
plt.imshow(x_train.reshape((60,60)),cmap='gray')
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
plt.title('ORIGINAL TOMOGRAPHY')
ax = plt.subplot(1, 3, 2)
plt.imshow(a.reshape((shape2,shape2)),cmap='gray')
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
plt.title('REGION OF INTEREST')
ax = plt.subplot(1, 3, 3)
plt.imshow(cv2.resize(gray, (55,55), interpolation = cv2.INTER_AREA),cmap='gray')
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
ax = plt.subplot(1, 3, 3)
plt.imshow(b.reshape((shape2,shape2)),cmap=cm,alpha=0.7)
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
plt.title('HIGHLIGHTED')