Research Article

A Method for Extracting Building Information from Remote Sensing Images Based on Deep Learning

Algorithm 1

: A demo of TensorFlow Mixconv2d.
def Mixconv2d(x, filters, args):
 #patameter define:
 #x: the features of input tensor;
 #filters: the list of specific filters’ shape;
 #args: reference variable
L = len(fliters)
 #groups of number.
y = [ ]
for xi, fi in zip (tf.split(x, G, axis = −i), fliters):
y.append(tf.nn.deptwise_conv2d(xi, fi, args))
return tf.concat(y, axis = −1)