KittiSeg
KittiSeg copied to clipboard
Issues report
In inputs/kitti_seg_input.py/L484, the Line below
road = tf.expand_dims(tf.to_float(label[:, :, :, 0]), 3)
I think it should be:
road = tf.expand_dims(tf.to_float(label[:, :, :, 1]), 3)
acording to function _make_data_gen()
, Line 165
gt_image = np.concatenate((gt_bg, gt_road), axis=2)