Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix principal direction extent #1008

Merged
merged 4 commits into from
Mar 21, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
Version 3.2.0
-------------

- Fix ``neurom.morphmath.principal_direction_extent`` to calculate correctly the pca extent.
- Fix ``neurom.features.neurite.segment_taper_rates`` to return signed taper rates.
- Fix warning system so that it doesn't change the pre-existing warnings configuration
- Fix ``neurom.features.bifurcation.partition_asymmetry`` Uylings variant to not throw
Expand Down
18 changes: 5 additions & 13 deletions neurom/morphmath.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,6 @@ def principal_direction_extent(points):

Returns:
extents : the extents for each of the eigenvectors of the cov matrix
eigs : eigenvalues of the covariance matrix
eigv : respective eigenvectors of the covariance matrix
"""
# pca can be biased by duplicate points
points = np.unique(points, axis=0)
Expand All @@ -483,14 +481,8 @@ def principal_direction_extent(points):
# principal components
_, eigv = pca(points)

extent = np.zeros(3)

for i in range(eigv.shape[1]):
# orthogonal projection onto the direction of the v component
scalar_projs = np.sort(np.array([np.dot(p, eigv[:, i]) for p in points]))
extent[i] = scalar_projs[-1]

if scalar_projs[0] < 0.:
extent -= scalar_projs[0]

return extent
# for each eigenvector calculate the range of the scalar projections of all points on it
return np.fromiter(
(np.ptp(np.inner(points, eigv[:, i])) for i in range(eigv.shape[1])),
arnaudon marked this conversation as resolved.
Show resolved Hide resolved
dtype=float,
)
16 changes: 8 additions & 8 deletions tests/features/test_get_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,18 +793,18 @@ def test_section_term_radial_distances():
def test_principal_direction_extents():
m = nm.load_morphology(SWC_PATH / 'simple.swc')
principal_dir = features.get('principal_direction_extents', m)
assert_allclose(principal_dir, [14.736052694538641, 12.105102672688004])
assert_allclose(principal_dir, [10.99514 , 10.997688])

# test with a realistic morphology
m = nm.load_morphology(DATA_PATH / 'h5/v1' / 'bio_neuron-000.h5')
p_ref = [
1672.969491,
142.437047,
224.607978,
415.50613,
429.830081,
165.954097,
346.832825,
1210.569727,
38.493958,
147.098687,
288.226628,
330.166506,
152.396521,
293.913857
]
p = features.get('principal_direction_extents', m)
assert_allclose(p, p_ref, rtol=1e-6)
Expand Down
57 changes: 57 additions & 0 deletions tests/test_morphmath.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
from math import fabs, pi, sqrt

import numpy as np
from numpy import testing as npt
from neurom import morphmath as mm
from neurom.core.dataformat import Point
from numpy.random import uniform
Expand Down Expand Up @@ -532,3 +533,59 @@ def test_spherical_coordinates():

new_elevation, new_azimuth = mm.spherical_from_vector(vect)
assert np.allclose([elevation, azimuth], [new_elevation, new_azimuth])


def test_principal_direction_extent():

# test with points on a circle with radius 0.5, and center at 0.0
circle_points = np.array([
[ 5.0e-01, 0.0e+00, 0.0e+00],
[ 4.7e-01, 1.6e-01, 0.0e+00],
[ 3.9e-01, 3.1e-01, 0.0e+00],
[ 2.7e-01, 4.2e-01, 0.0e+00],
[ 1.2e-01, 4.8e-01, 0.0e+00],
[-4.1e-02, 5.0e-01, 0.0e+00],
[-2.0e-01, 4.6e-01, 0.0e+00],
[-3.4e-01, 3.7e-01, 0.0e+00],
[-4.4e-01, 2.4e-01, 0.0e+00],
[-5.0e-01, 8.2e-02, 0.0e+00],
[-5.0e-01, -8.2e-02, 0.0e+00],
[-4.4e-01, -2.4e-01, 0.0e+00],
[-3.4e-01, -3.7e-01, 0.0e+00],
[-2.0e-01, -4.6e-01, 0.0e+00],
[-4.1e-02, -5.0e-01, 0.0e+00],
[ 1.2e-01, -4.8e-01, 0.0e+00],
[ 2.7e-01, -4.2e-01, 0.0e+00],
[ 3.9e-01, -3.1e-01, 0.0e+00],
[ 4.7e-01, -1.6e-01, 0.0e+00],
[ 5.0e-01, -1.2e-16, 0.0e+00]
])

npt.assert_allclose(
mm.principal_direction_extent(circle_points),
[1., 1., 0.], atol=1e-6,
)

# extent should be invariant to translations
npt.assert_allclose(
mm.principal_direction_extent(circle_points + 100.),
[1., 1., 0.], atol=1e-6,
)
npt.assert_allclose(
mm.principal_direction_extent(circle_points - 100.),
[1., 1., 0.], atol=1e-6,
)

cross_3D_points = np.array([
[-5.2, 0.0, 0.0],
[ 4.8, 0.0, 0.0],
[ 0.0,-1.3, 0.0],
[ 0.0, 4.7, 0.0],
[ 0.0, 0.0,-11.2],
[ 0.0, 0.0, 0.8],
])

npt.assert_allclose(
sorted(mm.principal_direction_extent(cross_3D_points)),
[6.0, 10.0, 12.0], atol=0.1,
)