SJTU-Thinklab-Det/DOTA-DOAI

concat 金字塔通道数是1280而不是1024

Jackluisus opened this issue · 0 comments

这个是代码中的金字塔合并操作,这样p6也就被合并了,(后面查看形状,输出的是1280)。但注释里写的不合并p6,求大家解惑。

        for l in range(1, len(cfgs.LEVLES)):  # do not concat P6, do not upsample P2
            upsample_p = tf.image.resize_bilinear(P_list[l],
                                                  size=[h, w],
                                                  name='up_sample_%d' % (l + 2))
            concat_list.append(upsample_p)


        concat_fet = tf.concat(concat_list, axis=-1)
        print(concat_fet.shape)