Skip to content
Discussion options

You must be logged in to vote

Hi @OmarAshkar, yes I just open one of the saved predictions and compare it visually to the corresponding images. They are not rotated.

print(out["image"].shape)  # --> torch.Size([3, 900, 800])
print(data.get_fdata().shape) # --> (900, 800)
plt.subplot(1,2,1)
plt.imshow(out["image"].permute(1,2,0))
plt.subplot(1,2,2)
plt.imshow(data.get_fdata())

Thanks!

Replies: 1 comment 7 replies

Comment options

You must be logged in to vote
7 replies
@OmarAshkar
Comment options

@KumoLiu
Comment options

@OmarAshkar
Comment options

@KumoLiu
Comment options

Answer selected by wyli
@OmarAshkar
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #6321 on May 08, 2023 07:58.