Question

I have a 3D stack of bwlabeln'ed data (128 by 128 by 128). Is there a way to cut a slice through it (as in MATLAB slice(...)) and save the resulting image to a matrix?

Thanks in advance!

OTHER TIPS

What kind of slice? Along one dimension e.g. z=5 you can use M(:,:,5). For diagonal slices you have to use some advanced method (interpolation).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top