Replies: 1 comment 1 reply
-
Hi @gucunlin, thanks for your interest here. The issue you're encountering with merging the blocks post-inference typically arises due to the way the overlapping predictions are combined. In MONAI, seamless tiling is often achieved by using methods that blend the overlapping regions to ensure continuity between blocks. Here are a few strategies you can try to solve the issue of obvious seams:
Hope it helps, thanks. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
"I am porting a model used in Monai inference to C++ using ITK and libtorch. However, I encounter a problem when merging the blocks after inference; the seams are too obvious, and the data differs significantly from that merged in Monai. For example, when merging 100 blocks of size 96, 96, 96 with an overlap rate of 62.5%, the seams are visibly prominent, and the final results after softmax and argmax do not match those in Python. How can I solve this issue with the overly obvious seams?"
Beta Was this translation helpful? Give feedback.
All reactions