-
Hi! Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hola @jkissi ! It is not really exposed to the users but if you look at: https://github.com/daavoo/pyntcloud/blob/master/pyntcloud/scalar_fields/k_neighbors.py#L28 You could manually build the And then call That would give you the covariance matrix that is used for the eigen calculations. |
Beta Was this translation helpful? Give feedback.
Hola @jkissi !
It is not really exposed to the users but if you look at:
https://github.com/daavoo/pyntcloud/blob/master/pyntcloud/scalar_fields/k_neighbors.py#L28
You could manually build the
k_neighbors
array (as in https://github.com/daavoo/pyntcloud/blob/master/pyntcloud/scalar_fields/k_neighbors.py#L20)And then call
cov3D(k_neighbors)
(frompyntcloud.utils.array
).That would give you the covariance matrix that is used for the eigen calculations.