indices of maximum values in a 3D medical image #5841
Answered
by
ebrahimebrahim
YingdiZhang
asked this question in
Q&A
-
Thanks for the great work. In my own project, I want to find the indices of the maximum value in a 3D medical image, how to achieve this? |
Beta Was this translation helpful? Give feedback.
Answered by
ebrahimebrahim
Jan 11, 2023
Replies: 1 comment 2 replies
-
If your image is some kind of array (numpy, torch tensor, etc.) then |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
wyli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If your image is some kind of array (numpy, torch tensor, etc.) then
argmax
is what you're looking for.