Replies: 1 comment 9 replies
-
Hi @jnc13 , Thanks for your interest here. Thanks. |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have labels for two features I am segmenting and for later processing it would be useful to export the model segmentations separately. If I'm missing a tutorial/example for how to do this please let me know but here is what I've tried so far:
The shape of the whole segmentation is:
Therefore I have tried iterating over the second element to produce separated outputs with:
This does output the labels separately, but in a different orientation to the un-separated output
saver.save_batch(val_output_bin)
and this orientation is not ideal for future processing steps. I know I could do some transforms but am I missing something? I had hoped the separate segmentations would simply output in the same orientation as separate files.Edit:
I realised it would be useful to share the different output shapes.
Combined output:(64, 64, 64, 2)
Separated outputs: (64, 64, 1, 64)
Any assistance would be greatly appreciated as always! Thank you in advance
Beta Was this translation helpful? Give feedback.
All reactions