-
Notifications
You must be signed in to change notification settings - Fork 161
/
denseunet3d.py
440 lines (361 loc) · 19 KB
/
denseunet3d.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
"""Test ImageNet pretrained DenseNet"""
from __future__ import print_function
import sys
sys.path.insert(0,'Keras-2.0.8')
import tensorflow as tf
from keras.models import Model
from keras.layers import Input, ZeroPadding2D, concatenate, Lambda, ZeroPadding3D, add
from keras.layers.core import Dropout, Activation
from keras.layers.convolutional import UpSampling2D, Conv2D, Conv3D, UpSampling3D, AveragePooling3D
from keras.layers.pooling import AveragePooling2D, MaxPooling2D, MaxPooling3D
from keras.layers.normalization import BatchNormalization
from lib.custom_layers import Scale
import keras.backend as K
import os
K.set_image_dim_ordering('tf')
def conv_block3d(x, stage, branch, nb_filter, dropout_rate=None, weight_decay=1e-4):
'''Apply BatchNorm, Relu, bottleneck 1x1 Conv3D, 3x3 Conv3D, and option dropout
# Arguments
x: input tensor
stage: index for dense block
branch: layer index within each dense block
nb_filter: number of filters
dropout_rate: dropout rate
weight_decay: weight decay factor
'''
eps = 1.1e-5
conv_name_base = '3dconv' + str(stage) + '_' + str(branch)
relu_name_base = '3drelu' + str(stage) + '_' + str(branch)
# 1x1 Convolution (Bottleneck layer)
inter_channel = nb_filter * 4
x = BatchNormalization(epsilon=eps, axis=4, name=conv_name_base+'_x1_bn')(x)
x = Scale(axis=4, name=conv_name_base+'_x1_scale')(x)
x = Activation('relu', name=relu_name_base+'_x1')(x)
x = Conv3D(inter_channel, (1, 1, 1), name=conv_name_base+'_x1', use_bias=False)(x)
if dropout_rate:
x = Dropout(dropout_rate)(x)
# 3x3 Convolution
x = BatchNormalization(epsilon=eps, axis=4, name=conv_name_base+'_x2_bn')(x)
x = Scale(axis=4, name=conv_name_base+'_x2_scale')(x)
x = Activation('relu', name=relu_name_base+'_x2')(x)
x = ZeroPadding3D((1, 1, 1), name=conv_name_base+'_x2_zeropadding')(x)
x = Conv3D(nb_filter, (3, 3, 3), name=conv_name_base+'_x2', use_bias=False)(x)
if dropout_rate:
x = Dropout(dropout_rate)(x)
return x
def dense_block3d(x, stage, nb_layers, nb_filter, growth_rate, dropout_rate=None, weight_decay=1e-4, grow_nb_filters=True):
''' Build a dense_block where the output of each conv_block is fed to subsequent ones
# Arguments
x: input tensor
stage: index for dense block
nb_layers: the number of layers of conv_block to append to the model.
nb_filter: number of filters
growth_rate: growth rate
dropout_rate: dropout rate
weight_decay: weight decay factor
grow_nb_filters: flag to decide to allow number of filters to grow
'''
eps = 1.1e-5
concat_feat = x
for i in range(nb_layers):
branch = i+1
x = conv_block3d(concat_feat, stage, branch, growth_rate, dropout_rate, weight_decay)
concat_feat = concatenate([concat_feat, x], axis=4, name='3dconcat_'+str(stage)+'_'+str(branch))
if grow_nb_filters:
nb_filter += growth_rate
return concat_feat, nb_filter
def transition_block3d(x, stage, nb_filter, compression=1.0, dropout_rate=None, weight_decay=1E-4):
''' Apply BatchNorm, 1x1 Convolution, averagePooling, optional compression, dropout
# Arguments
x: input tensor
stage: index for dense block
nb_filter: number of filters
compression: calculated as 1 - reduction. Reduces the number of feature maps in the transition block.
dropout_rate: dropout rate
weight_decay: weight decay factor
'''
eps = 1.1e-5
conv_name_base = '3dconv' + str(stage) + '_blk'
relu_name_base = '3drelu' + str(stage) + '_blk'
pool_name_base = '3dpool' + str(stage)
x = BatchNormalization(epsilon=eps, axis=4, name=conv_name_base+'_bn')(x)
x = Scale(axis=4, name=conv_name_base+'_scale')(x)
x = Activation('relu', name=relu_name_base)(x)
x = Conv3D(int(nb_filter * compression), (1, 1, 1), name=conv_name_base, use_bias=False)(x)
if dropout_rate:
x = Dropout(dropout_rate)(x)
x = AveragePooling3D((2, 2, 1), strides=(2, 2, 1), name=pool_name_base)(x)
return x
def DenseNet3D(img_input, nb_dense_block=4, growth_rate=32, nb_filter=96, reduction=0.0, dropout_rate=0.0, weight_decay=1e-4, classes=1000, weights_path=None):
'''Instantiate the DenseNet 161 architecture,
# Arguments
nb_dense_block: number of dense blocks to add to end
growth_rate: number of filters to add per dense block
nb_filter: initial number of filters
reduction: reduction factor of transition blocks.
dropout_rate: dropout rate
weight_decay: weight decay factor
classes: optional number of classes to classify images
weights_path: path to pre-trained weights
# Returns
A Keras model instance.
'''
eps = 1.1e-5
# compute compression factor
compression = 1.0 - reduction
# From architecture for ImageNet (Table 1 in the paper)
nb_filter = 96
nb_layers = [3, 4, 12, 8] # For DenseNet-161
box = []
# Initial convolution
x = ZeroPadding3D((3, 3, 3), name='3dconv1_zeropadding')(img_input)
x = Conv3D(nb_filter, (7, 7, 7), strides=(2, 2, 2), name='3dconv1', use_bias=False)(x)
x = BatchNormalization(epsilon=eps, axis=4, name='3dconv1_bn')(x)
x = Scale(axis=4, name='3dconv1_scale')(x)
x = Activation('relu', name='3drelu1')(x)
box.append(x)
x = ZeroPadding3D((1, 1, 1), name='3dpool1_zeropadding')(x)
x = MaxPooling3D((3, 3, 3), strides=(2, 2, 2), name='3dpool1')(x)
# Add dense blocks
for block_idx in range(nb_dense_block - 1):
stage = block_idx + 2
x, nb_filter = dense_block3d(x, stage, nb_layers[block_idx], nb_filter, growth_rate, dropout_rate=dropout_rate,
weight_decay=weight_decay)
box.append(x)
# Add transition_block
x = transition_block3d(x, stage, nb_filter, compression=compression, dropout_rate=dropout_rate,
weight_decay=weight_decay)
nb_filter = int(nb_filter * compression)
final_stage = stage + 1
x, nb_filter = dense_block3d(x, final_stage, nb_layers[-1], nb_filter, growth_rate, dropout_rate=dropout_rate,
weight_decay=weight_decay)
x = BatchNormalization(epsilon=eps, axis=4, name='3dconv' + str(final_stage) + '_blk_bn')(x)
x = Scale(axis=4, name='3dconv' + str(final_stage) + '_blk_scale')(x)
x = Activation('relu', name='3drelu' + str(final_stage) + '_blk')(x)
box.append(x)
# print (box)
up0 = UpSampling3D(size=(2, 2, 1))(x)
# line0 = Conv3D(504, (1, 1, 1), padding="same", name="3dline0")(box[3])
# up0_sum = add([line0, up0])
conv_up0 = Conv3D(504, (3, 3, 3), padding="same", name="3dconv_up0")(up0)
bn_up0 = BatchNormalization(name="3dbn_up0")(conv_up0)
ac_up0 = Activation('relu', name='3dac_up0')(bn_up0)
up1 = UpSampling3D(size=(2, 2, 1))(ac_up0)
# up1_sum = add([box[2], up1])
conv_up1 = Conv3D(224, (3, 3, 3), padding="same", name="3dconv_up1")(up1)
bn_up1 = BatchNormalization(name="3dbn_up1")(conv_up1)
ac_up1 = Activation('relu', name='3dac_up1')(bn_up1)
up2 = UpSampling3D(size=(2, 2, 1))(ac_up1)
# up2_sum = add([box[1], up2])
conv_up2 = Conv3D(192, (3, 3, 3), padding="same", name="3dconv_up2")(up2)
bn_up2 = BatchNormalization(name="3dbn_up2")(conv_up2)
ac_up2 = Activation('relu', name='3dac_up2')(bn_up2)
up3 = UpSampling3D(size=(2, 2, 2))(ac_up2)
# up3_sum = add([box[0], up3])
conv_up3 = Conv3D(96, (3, 3, 3), padding="same", name="3dconv_up3")(up3)
bn_up3 = BatchNormalization(name="3dbn_up3")(conv_up3)
ac_up3 = Activation('relu', name='3dac_up3')(bn_up3)
up4 = UpSampling3D(size=(2, 2, 2))(ac_up3)
conv_up4 = Conv3D(64, (3, 3, 3), padding="same", name="3dconv_up4")(up4)
bn_up4 = BatchNormalization(name="3dbn_up4")(conv_up4)
ac_up4 = Activation('relu', name='3dac_up4')(bn_up4)
x = Conv3D(3, (1, 1, 1), padding="same", name='3dclassifer')(ac_up4)
return ac_up4, x
def DenseUNet(img_input, nb_dense_block=4, growth_rate=48, nb_filter=96, reduction=0.0, dropout_rate=0.0, weight_decay=1e-4, classes=1000, weights_path=None):
'''Instantiate the DenseNet 161 architecture,
# Arguments
nb_dense_block: number of dense blocks to add to end
growth_rate: number of filters to add per dense block
nb_filter: initial number of filters
reduction: reduction factor of transition blocks.
dropout_rate: dropout rate
weight_decay: weight decay factor
classes: optional number of classes to classify images
weights_path: path to pre-trained weights
# Returns
A Keras model instance.
'''
eps = 1.1e-5
# compute compression factor
compression = 1.0 - reduction
# Handle Dimension Ordering for different backends
global concat_axis
concat_axis = 3
# From architecture for ImageNet (Table 1 in the paper)
nb_filter = 96
nb_layers = [6,12,36,24] # For DenseNet-161
box = []
# Initial convolution
x = ZeroPadding2D((3, 3), name='conv1_zeropadding')(img_input)
x = Conv2D(nb_filter, (7, 7), strides=(2, 2), name='conv1', use_bias=False, trainable=False)(x)
x = BatchNormalization(epsilon=eps, axis=concat_axis, momentum = 1, name='conv1_bn', trainable=False)(x, training=False)
x = Scale(axis=concat_axis, name='conv1_scale', trainable=False)(x)
x = Activation('relu', name='relu1')(x)
box.append(x)
x = ZeroPadding2D((1, 1), name='pool1_zeropadding')(x)
x = MaxPooling2D((3, 3), strides=(2, 2), name='pool1')(x)
# Add dense blocks
for block_idx in range(nb_dense_block - 1):
stage = block_idx+2
x, nb_filter = dense_block(x, stage, nb_layers[block_idx], nb_filter, growth_rate, dropout_rate=dropout_rate, weight_decay=weight_decay)
box.append(x)
# Add transition_block
x = transition_block(x, stage, nb_filter, compression=compression, dropout_rate=dropout_rate, weight_decay=weight_decay)
nb_filter = int(nb_filter * compression)
final_stage = stage + 1
x, nb_filter = dense_block(x, final_stage, nb_layers[-1], nb_filter, growth_rate, dropout_rate=dropout_rate, weight_decay=weight_decay)
x = BatchNormalization(epsilon=eps, axis=concat_axis, momentum = 1, name='conv'+str(final_stage)+'_blk_bn', trainable=False)(x, training=False)
x = Scale(axis=concat_axis, name='conv'+str(final_stage)+'_blk_scale', trainable=False)(x)
x = Activation('relu', name='relu'+str(final_stage)+'_blk')(x)
box.append(x)
up0 = UpSampling2D(size=(2,2))(x)
conv_up0 = Conv2D(768, (3, 3), padding="same", name = "conv_up0", trainable=False)(up0)
bn_up0 = BatchNormalization(name = "bn_up0", momentum = 1, trainable=False)(conv_up0, training=False)
ac_up0 = Activation('relu', name='ac_up0')(bn_up0)
up1 = UpSampling2D(size=(2,2))(ac_up0)
conv_up1 = Conv2D(384, (3, 3), padding="same", name = "conv_up1", trainable=False)(up1)
bn_up1 = BatchNormalization(name = "bn_up1", momentum = 1, trainable=False)(conv_up1, training=False)
ac_up1 = Activation('relu', name='ac_up1')(bn_up1)
up2 = UpSampling2D(size=(2,2))(ac_up1)
conv_up2 = Conv2D(96, (3, 3), padding="same", name = "conv_up2", trainable=False)(up2)
bn_up2 = BatchNormalization(name = "bn_up2", momentum = 1, trainable=False)(conv_up2, training=False)
ac_up2 = Activation('relu', name='ac_up2')(bn_up2)
up3 = UpSampling2D(size=(2,2))(ac_up2)
conv_up3 = Conv2D(96, (3, 3), padding="same", name = "conv_up3", trainable=False)(up3)
bn_up3 = BatchNormalization(name = "bn_up3", momentum = 1, trainable=False)(conv_up3, training=False)
ac_up3 = Activation('relu', name='ac_up3')(bn_up3)
up4 = UpSampling2D(size=(2, 2))(ac_up3)
conv_up4 = Conv2D(64, (3, 3), padding="same", name="conv_up4", trainable=False)(up4)
bn_up4 = BatchNormalization(name="bn_up4", momentum = 1, trainable=False)(conv_up4, training=False)
ac_up4 = Activation('relu', name='ac_up4')(bn_up4)
x = Conv2D(3, (1,1), padding="same", name='dense167classifer', trainable=False)(ac_up4)
return ac_up4, x
def conv_block(x, stage, branch, nb_filter, dropout_rate=None, weight_decay=1e-4):
'''Apply BatchNorm, Relu, bottleneck 1x1 Conv2D, 3x3 Conv2D, and option dropout
# Arguments
x: input tensor
stage: index for dense block
branch: layer index within each dense block
nb_filter: number of filters
dropout_rate: dropout rate
weight_decay: weight decay factor
'''
eps = 1.1e-5
conv_name_base = 'conv' + str(stage) + '_' + str(branch)
relu_name_base = 'relu' + str(stage) + '_' + str(branch)
# 1x1 Convolution (Bottleneck layer)
inter_channel = nb_filter * 4
x = BatchNormalization(epsilon=eps, axis=concat_axis, momentum = 1, name=conv_name_base+'_x1_bn', trainable=False)(x, training=False)
x = Scale(axis=concat_axis, name=conv_name_base+'_x1_scale', trainable=False)(x)
x = Activation('relu', name=relu_name_base+'_x1')(x)
x = Conv2D(inter_channel, (1, 1), name=conv_name_base+'_x1', use_bias=False, trainable=False)(x)
if dropout_rate:
x = Dropout(dropout_rate)(x)
# 3x3 Convolution
x = BatchNormalization(epsilon=eps, axis=concat_axis, momentum = 1, name=conv_name_base+'_x2_bn', trainable=False)(x, training=False)
x = Scale(axis=concat_axis, name=conv_name_base+'_x2_scale', trainable=False)(x)
x = Activation('relu', name=relu_name_base+'_x2')(x)
x = ZeroPadding2D((1, 1), name=conv_name_base+'_x2_zeropadding')(x)
x = Conv2D(nb_filter, (3, 3), name=conv_name_base+'_x2', use_bias=False, trainable=False)(x)
if dropout_rate:
x = Dropout(dropout_rate)(x)
return x
def transition_block(x, stage, nb_filter, compression=1.0, dropout_rate=None, weight_decay=1E-4):
''' Apply BatchNorm, 1x1 Convolution, averagePooling, optional compression, dropout
# Arguments
x: input tensor
stage: index for dense block
nb_filter: number of filters
compression: calculated as 1 - reduction. Reduces the number of feature maps in the transition block.
dropout_rate: dropout rate
weight_decay: weight decay factor
'''
eps = 1.1e-5
conv_name_base = 'conv' + str(stage) + '_blk'
relu_name_base = 'relu' + str(stage) + '_blk'
pool_name_base = 'pool' + str(stage)
x = BatchNormalization(epsilon=eps, axis=concat_axis, momentum = 1, name=conv_name_base+'_bn', trainable=False)(x, training=False)
x = Scale(axis=concat_axis, name=conv_name_base+'_scale', trainable=False)(x)
x = Activation('relu', name=relu_name_base)(x)
x = Conv2D(int(nb_filter * compression), (1, 1), name=conv_name_base, use_bias=False, trainable=False)(x)
if dropout_rate:
x = Dropout(dropout_rate)(x)
x = AveragePooling2D((2, 2), strides=(2, 2), name=pool_name_base)(x)
return x
def dense_block(x, stage, nb_layers, nb_filter, growth_rate, dropout_rate=None, weight_decay=1e-4, grow_nb_filters=True):
''' Build a dense_block where the output of each conv_block is fed to subsequent ones
# Arguments
x: input tensor
stage: index for dense block
nb_layers: the number of layers of conv_block to append to the model.
nb_filter: number of filters
growth_rate: growth rate
dropout_rate: dropout rate
weight_decay: weight decay factor
grow_nb_filters: flag to decide to allow number of filters to grow
'''
eps = 1.1e-5
concat_feat = x
for i in range(nb_layers):
branch = i+1
x = conv_block(concat_feat, stage, branch, growth_rate, dropout_rate, weight_decay)
concat_feat = concatenate([concat_feat, x], axis=concat_axis, name='concat_'+str(stage)+'_'+str(branch))
if grow_nb_filters:
nb_filter += growth_rate
return concat_feat, nb_filter
def slice(x, h1, h2):
""" Define a tensor slice function
"""
return x[:, :, :, h1:h2,:]
def slice2d(x, h1, h2):
tmp = x[h1:h2,:,:,:]
tmp = tf.transpose(tmp, perm=[1, 2, 0, 3])
tmp = tf.expand_dims(tmp, 0)
return tmp
def slice_last(x):
x = x[:,:,:,:,0]
return x
def trans(x):
x = tf.transpose(x, perm=[0,3,1,2,4])
return x
def trans_back(x):
x = tf.transpose(x, perm=[0,2,3,1,4])
return x
def denseunet_3d(args):
# ************************3d volume input******************************************************************
img_input = Input(batch_shape=(args.b, args.input_size, args.input_size, args.input_cols, 1), name='volumetric_data')
# ************************(batch*d3cols)*2dvolume--2D DenseNet branch**************************************
input2d = Lambda(slice, arguments={'h1': 0, 'h2': 2})(img_input)
single = Lambda(slice, arguments={'h1':0, 'h2':1})(img_input)
input2d = concatenate([single, input2d], axis=3)
for i in xrange(args.input_cols - 2):
input2d_tmp = Lambda(slice, arguments={'h1': i, 'h2': i + 3})(img_input)
input2d = concatenate([input2d, input2d_tmp], axis=0)
if i == args.input_cols - 3:
final1 = Lambda(slice, arguments={'h1': args.input_cols-2, 'h2': args.input_cols})(img_input)
final2 = Lambda(slice, arguments={'h1': args.input_cols-1, 'h2': args.input_cols})(img_input)
final = concatenate([final1, final2], axis=3)
input2d = concatenate([input2d, final], axis=0)
input2d = Lambda(slice_last)(input2d)
# ******************************stack to 3D volumes *******************************************************
feature2d, classifer2d = DenseUNet(input2d, reduction=0.5)
res2d = Lambda(slice2d, arguments={'h1': 0, 'h2': 1})(classifer2d)
fea2d = Lambda(slice2d, arguments={'h1':0, 'h2':1})(feature2d)
for j in xrange(args.input_cols - 1):
score = Lambda(slice2d, arguments={'h1': j + 1, 'h2': j + 2})(classifer2d)
fea2d_slice = Lambda(slice2d, arguments={'h1': j + 1, 'h2': j + 2})(feature2d)
res2d = concatenate([res2d, score], axis=3)
fea2d = concatenate([fea2d, fea2d_slice], axis=3)
# *************************** 3d DenseNet on 3D volume (concate with feature map )*********************************
res2d_input = Lambda(lambda x: x * 250)(res2d)
input3d_ori = Lambda(slice, arguments={'h1': 0, 'h2': args.input_cols})(img_input)
input3d = concatenate([input3d_ori, res2d_input], axis=4)
feature3d, classifer3d = DenseNet3D(input3d, reduction=0.5)
final = add([feature3d, fea2d])
final_conv = Conv3D(64, (3, 3, 3), padding="same", name='fianl_conv')(final)
final_conv = Dropout(rate=0.1)(final_conv)
final_bn = BatchNormalization(name="final_bn")(final_conv)
final_ac = Activation('relu', name='final_ac')(final_bn)
classifer = Conv3D(3, (1, 1, 1), padding="same", name='2d3dclassifer')(final_ac)
model = Model( inputs = img_input,outputs = classifer, name='auto3d_residual_conv')
return model