Open lagru opened 7 months ago
Hello scikit-image core devs! There hasn't been any activity on this issue for more than 180 days. I have marked it as "dormant" to make it easy to find.
To our contributors, thank you for your contribution and apologies if this issue fell through the cracks! Hopefully this ping will help bring some fresh attention to the issue. If you need help, you can always reach out on our forum
If you think that this issue is no longer relevant, you may close it, or we may do it at some point (either way, it will be done manually).
From https://github.com/scikit-image/scikit-image/issues/7391#issuecomment-2054159456:
Details
> I did, the mentioned ones are gone, but now there is another one; this time in amd64 (and obviousy unrelated): > ``` > _____________________ test_polynomial_weighted_estimation ______________________ > > def test_polynomial_weighted_estimation(): > # Over-determined solution with same points, and unity weights > tform = estimate_transform('polynomial', SRC, DST, order=10) > tform_w = estimate_transform( > 'polynomial', SRC, DST, order=10, weights=np.ones(SRC.shape[0]) > ) > assert_almost_equal(tform.params, tform_w.params) > > # Repeating a point, but setting its weight small, should give nearly > # the same result. > point_weights = np.ones(SRC.shape[0] + 1) > point_weights[0] = 1.0e-15 > tform1 = estimate_transform('polynomial', SRC, DST, order=10) > tform2 = estimate_transform( > 'polynomial', > SRC[np.arange(-1, SRC.shape[0]), :], > DST[np.arange(-1, SRC.shape[0]), :], > order=10, > weights=point_weights, > ) > > assert_almost_equal(tform1.params, tform2.params, decimal=4) > > skimage/transform/tests/test_geometric.py:666: > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > /usr/lib/python3.11/contextlib.py:81: in inner > return func(*args, **kwds) > /usr/lib/python3.11/contextlib.py:81: in inner > return func(*args, **kwds) > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > args = (There are some arch specific failures on Debian that seem related to libatlas. This affects
test_polynomial_weighted_estimation
for amd64 andtest_ellipse_parameter_stability
for ppc64el and loongarch64.See also https://github.com/scikit-image/scikit-image/issues/7391#issuecomment-2056655869 for possible dependencies that might have caused the test assertion failures:
cc @olebole