def predict_seg( bottom): #rgb = bottom[0].data rgb = bottom[0].data # print rgb.shape # depth = bottom[1].data predict_seg = probabilitygraph(rgb) return predict_seg
def predict_seg(bottom): rgb = bottom[0].data # depth = bottom[1].data predict_seg = probabilitygraph(rgb) return predict_seg
def predict_seg(rgb): predict_seg = probabilitygraph(rgb) return predict_seg