当前位置:   article > 正文

根据特征图画热图_heatmap_save heat maps of feature

save heat maps of feature

对模型输出的特征图y进行上采样:

features=nn.Upsample(scale_factor=32, mode='bicubic', align_corners=None)(y.view(-1,12,12,1536).permute(0,3,1,2))
 #scale_factor是上采样倍数
 #y是输入,需要permute一下是转换一下通道的位置
  • 1
  • 2
  • 3
##以下对特征图逐个画出来
for i in range(features.shape[0]):
    feature = features[i,:,:].cpu().detach().numpy()
    save_feature(im_resize, feature, i, detected_classes)
    
#保存图的函数
#im_resize为原始通入到模型的图像,detected_classes是模型输出的这个图像的类别,
def save_feature(im_resize, feature, i, detected_classes,):
    print('save {}'.format(i))
    fig = plt.figure()
    plt.imshow(im_resize)
    plt.imshow(feature, alpha=0.65)
    plt.axis('off')
    plt.axis('tight')
    plt.title("detected classes: {}".format(detected_classes))

    outpath = ""#设置一下你要保存的路径
    plt.savefig(outpath, format='png', transparent=True, dpi=100, pad_inches = 0)
    plt.show()
    print('done\n')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/760839
推荐阅读
相关标签
  

闽ICP备14008679号