参考

for i in range(7):
    plt.figure(i,figsize=(10,10))
    plt.subplot(1,3,1)
    plt.imshow(teacher_mid[i][0], interpolation='bicubic')
    plt.subplot(1,3,2)
    plt.imshow(student_mid[i][0], interpolation='bicubic')
    plt.subplot(1,3,3)
    plt.imshow(at_student_mid[i][0], interpolation='bicubic')
    plt.show()

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
  • 2022-12-23
  • 2021-08-12
  • 2021-07-13
  • 2021-07-17
  • 2021-10-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2022-12-23
  • 2021-07-29
  • 2021-07-08
  • 2022-12-23
相关资源
相似解决方案