Surface between two point clouds.

1 次查看(过去 30 天)
Hi everybody!
I have a 3D matrix (NxNxM) describing a space in which there are three integer values to distinguix three diferent volumes in the space (0,1 and 2). I want two extract the indexes of neighbouring points with values 1 and 2, so I can later adjust a plane separating this two regions.
Any help regarding the extraction of the desired indexes is appreciated, thank you!

回答(1 个)

Dinesh
Dinesh 2023-9-20
Hi Núria,
I understand that you are trying to extract indices from a 3D matrix.
Assuming your 3D matrix is of values 0, 1, 2 that represent three different volumes in the space. We can extract the linear indices of the values using the 'find' function in MATLAB. 'find' function returns returns a vector containing the linear indices of each nonzero element in array X.
Further you can convert the linear indices to subscripts using the 'ind2sub' function in MATLAB.
Please go through this example for more details
% creating a 3D array
A = [0,2;1,0];
B = [2,0;1,0];
C = [2,1;0,0];
Z = cat(3,A,B,C)
Z =
Z(:,:,1) = 0 2 1 0 Z(:,:,2) = 2 0 1 0 Z(:,:,3) = 2 1 0 0
% find returns indices of all non zero indices.
linear_indices_1 = find(Z==1)
linear_indices_1 = 3×1
2 6 11
% caluculation the row , column and depth of linear index 2
[row, col, dimension] = ind2sub(size(Z), 2)
row = 2
col = 1
dimension = 1
Please refer to the following MATLAB documentation for more details on 'find' and 'ind2sub' functions
  1. https://www.mathworks.com/help/matlab/ref/find.html
  2. https://www.mathworks.com/help/matlab/ref/ind2sub.html#d126e815337
Hope this helps.
Best regards,
Dinesh Reddy Gatla.

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by