我正在尝试像您的实验一样训练我自己的数据集(2 类包括背景),但我得到空白输出标签图像是具有 2 种颜色的 PNG 格式图像(0 用于背景,1 用于前景)
SEG_INFORMATION = DatasetDescriptor(
splits_to_sizes={
'train': 250, # number of file in the train folder
'trainval': 255,
'val': 5,
},
num_classes=2, # number of classes in your dataset
ignore_label=255, # white edges that will be ignored to be class
not_ignore_mask = tf.to_float(tf.equal(scaled_labels, 0)) * 1 + tf.to_float(tf. equal(scaled_labels, 1)) * 500 + tf.to_float(tf.equal(scaled_labels, ignore_label)) * 0
!https://user-images.githubusercontent.com/23016323/52344967-fb472600-2a13-11e9-8841-0d0c5c7dde72.png
这些是我尝试过的配置和我使用的示例标签图像
我期望输出为分段但得到空白图像