|
| 1 | +from distutils.version import LooseVersion |
1 | 2 | import numpy as np
|
| 3 | +import scipy |
| 4 | +from scipy import sparse |
| 5 | +import pytest |
2 | 6 | import matplotlib as mpl
|
3 |
| -from numpy.testing import assert_array_almost_equal, assert_array_equal |
| 7 | +from numpy.testing import assert_allclose, assert_array_equal |
4 | 8 |
|
5 | 9 | from surfer import utils
|
6 | 10 |
|
@@ -44,12 +48,12 @@ def test_surface():
|
44 | 48 | x = surface.x
|
45 | 49 | surface.apply_xfm(xfm)
|
46 | 50 | x_ = surface.x
|
47 |
| - assert_array_almost_equal(x + 2, x_) |
| 51 | + assert_allclose(x + 2, x_) |
48 | 52 |
|
49 | 53 | # normals
|
50 | 54 | nn = _slow_compute_normals(surface.coords, surface.faces[:10000])
|
51 | 55 | nn_fast = utils._compute_normals(surface.coords, surface.faces[:10000])
|
52 |
| - assert_array_almost_equal(nn, nn_fast) |
| 56 | + assert_allclose(nn, nn_fast) |
53 | 57 | assert 50 < np.linalg.norm(surface.coords, axis=-1).mean() < 100 # mm
|
54 | 58 | surface = utils.Surface('fsaverage', 'lh', 'inflated',
|
55 | 59 | subjects_dir=subj_dir, units='m')
|
@@ -99,3 +103,18 @@ def test_create_color_lut():
|
99 | 103 | # Test that we can ask for a specific number of colors
|
100 | 104 | cmap_out = utils.create_color_lut("Reds", 12)
|
101 | 105 | assert cmap_out.shape == (12, 4)
|
| 106 | + |
| 107 | + |
| 108 | +def test_smooth(): |
| 109 | + """Test smoothing support.""" |
| 110 | + adj_mat = sparse.csc_matrix(np.repeat(np.repeat(np.eye(2), 2, 0), 2, 1)) |
| 111 | + vertices = np.array([0, 2]) |
| 112 | + want = np.repeat(np.eye(2), 2, axis=0) |
| 113 | + smooth = utils.smoothing_matrix(vertices, adj_mat).toarray() |
| 114 | + assert_allclose(smooth, want) |
| 115 | + if LooseVersion(scipy.__version__) < LooseVersion('1.3'): |
| 116 | + with pytest.raises(RuntimeError, match='nearest.*requires'): |
| 117 | + utils.smoothing_matrix(vertices, adj_mat, 'nearest') |
| 118 | + else: |
| 119 | + smooth = utils.smoothing_matrix(vertices, adj_mat, 'nearest').toarray() |
| 120 | + assert_allclose(smooth, want) |
0 commit comments