How to extract 40 points from each slice in binary image ?

Hello,
I have a small question. I have 3D binary image. I would like to extract 40 points/voxels from each slices. Is it possible in matlab ? Maybe someone has any idea ? I would be appreciate for any help please.

回答(1 个)

You didn't specify what 40 points?
A=rand(10,10,10)>0.5 % Example
n=size(A,3)
out=arrayfun(@(x) A(1:4,1:10,x),1:n,'un',0)

1 个评论

I need to extract 40 voxels from contour of binary image. From each slice 40 contour voxels ?

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Image Processing Toolbox 的更多信息

提问:

2016-7-10

评论:

2016-7-10

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by