"All" | Returns all available properties listed. | |
"Label" | Cluster label, returned as a numeric scalar. This
property indicates which cluster the other properties in the
same structure correspond to. Cluster labels do not have to be
sequential and can contain gaps in the label
numbering. The output always includes the
"Label" field. | Label=3 indicates that the properties
correspond to cluster 3. |
"NumberOfPoints" | Number of points in the cluster, returned as an integer. The
value equals the count of points assigned to the cluster based on
the input labels. | NumberOfPoints=150 indicates that the
cluster contains 150 points. |
"Centroid" | Centroid of the cluster, returned as a numeric 3-element row
vector of the form [x y z]. The
values represent the average coordinates of all points in the
cluster. | Centroid=[1.2 3.5 0.8] indicates the mean
location of the cluster points. |
"BoundingBox" | Axis-aligned bounding box, returned as a numeric 6-element row
vector of the form [xmin xmax ymin ymax zmin
zmax]. The values represent the minimum and maximum
limits of the cluster along each axis. | BoundingBox=[0 5 1 6 -2 3] defines the
spatial extent of the cluster.
x spans from
0 to 5 y spans from
1 to 6 z spans from
-2 to 3
|
"OrientedBoundingBox" | Smallest cuboid containing the cluster, returned as a
numeric 9-element row vector of the form [xctr yctr
zctr xlen ylen zlen xrot yrot zrot].
xctr, yctr,
and zctr specify the center of the
cuboid. xlen, ylen,
and zlen specify the lengths of the
cuboid along each axis before rotation. xrot, yrot,
and zrot specify the rotation
angles, in degrees, of the cuboid about the
x-, y-, and
z-axes, respectively.
Angles follow the right-hand rule: a positive
angle is a counterclockwise rotation when viewed from the
positive end of the axis toward the origin. This
property describes the orientation of a fitted cuboid that
encloses the cluster. The orientation is represented using a
ZYX Euler-angle decomposition
(R = Rz *
Ry * Rx). The returned
vector is ordered as [xrot yrot
zrot]. | OrientedBoundingBox=[2 3 1 4 2 5 10 0
30] indicates:
Center at (2, 3, 1) Dimensions of 4
(x), 2
(y), and 5
(z) Rotation angles of 10° about x,
0° about y, and 30° about
z.
|
"EigenValues" | Eigenvalues of the point distribution in the cluster, returned
as a numeric 3-element row vector. | EigenValues=[5.2; 2.1; 0.4] indicates:
Largest variance along the first principal direction
(5.2) Intermediate variance along the second
(2.1) Smallest variance along the third
(0.4)
|
"EigenVectors" | Eigenvectors of the point distribution in the cluster, returned
as a numeric 3-by-3 matrix. Each column represents a principal
direction. | EigenVectors= indicates the principal first principal direction
aligned with the x-axis, the second principal
direction aligned with the y-axis, and the third
principal direction aligned with the
z-axis. |
"PrincipalAxisLength" | Principal axis lengths, returned as a numeric 3-element
row vector of the form [majorAxisLength
intermediateAxisLength
minorAxisLength] The lengths are derived
from the covariance-matrix eigenvalues of the
cluster. | PrincipalAxisLength = [10 6 2] indicates:
|
"ConvexVolume" | Convex hull volume, returned as a positive scalar. The value
represents the volume of the smallest convex region enclosing the
cluster. | ConvexVolume = 125.6 indicates a cluster
volume of 125.6 cubic units. |
"Density" | Cluster density, returned as a positive scalar. This
value is the ratio of the number of points in the cluster to the
convex hull volume. Density =
NumberOfPoints/ConvexVolume
| Density = 1.2 indicates that the cluster has
1.2 points per unit of volume. |
"Orientation" | Cluster orientation, returned as a numeric 3-element row
vector of the form [xrot yrot zrot], in
degrees. The vector represents the orientation of the principal
axes of the ellipsoid that approximates the cluster and has the
same normalized second central moments. The orientation is
represented using a ZYX Euler-angle
decomposition (R = Rz *
Ry * Rx).
Angles follow the right-hand rule: a positive angle
is a counterclockwise rotation when viewed from the positive end
of the axis toward the origin. The returned vector is ordered as
[xrot yrot zrot]. | Orientation = [0 15 45] indicates:
No rotation about x 15° rotation about y 45° rotation about z
|
"Linearity" | Measure of linear structure, returned as a scalar in the
range [0, 1]. The value indicates how
strongly the cluster of points are distributed along a
line.
The formula computes the relative difference
between the first and second covariance-matrix eigenvalues [1]. | Linearity = 0.85 indicates that the cluster
is strongly linear. |
"Planarity" | Measure of planar structure, returned as a scalar in the
range [0, 1]. The value indicates how
strongly the cluster of points is distributed within a
plane.
The formula computes the relative difference
between the second and third covariance-matrix eigenvalues [1]. | Planarity = 0.6 indicates moderate planar
characteristics. |
"Sphericity" | Measure of volumetric structure, returned as a scalar in
the range [0, 1]. The value indicates how
evenly the cluster of points is distributed in all three
dimensions.
The formula computes the ratio of the third
covariance-matrix eigenvalue to the first covariance-matrix
eigenvalue [1]. | Sphericity = 0.3 indicates limited
volumetric distribution. |
"MinIntensity" | Minimum intensity value in the cluster, returned as a
scalar. | MinIntensity = 12 indicates that the lowest
intensity among the cluster points is 12. |
"MaxIntensity" | Maximum intensity value in the cluster, returned as a numeric
scalar. | MaxIntensity = 255 indicates that the
highest intensity among the cluster points is 255. |
"MeanIntensity" | Mean intensity value of the cluster, returned as a numeric
scalar. | MeanIntensity = 87.5 indicates that the
average intensity of the cluster points is 87.5. |