-
My model have two input tensors, how to do sliding window inference? |
Beta Was this translation helpful? Give feedback.
Answered by
KumoLiu
Nov 8, 2022
Replies: 1 comment 1 reply
-
Hi @luciliang, so far I find an ugly way to do this, if your two input images are the same size, then you can concat them together before sending them to the model and separate them at the beginning of the network. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
wyli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @luciliang, so far I find an ugly way to do this, if your two input images are the same size, then you can concat them together before sending them to the model and separate them at the beginning of the network.
Hope it can help you, thanks!