Skip to content
Commits on Source (5)
simpleitk (1.0.1-2) unstable; urgency=medium
* Cherry-pick upstream fix for FTBFS on i386.
Thanks to Adrian Bunk for reporting (Closes: #892459)
* Point the VCS URIs to salsa.debian.org
* Bump the debhelper version to 11
* Bump the standards version to 4.1.3
-- Ghislain Antony Vaillant <ghisvail@gmail.com> Sun, 11 Mar 2018 09:39:38 +0000
simpleitk (1.0.1-1) unstable; urgency=low
* Initial release. (Closes: #740296)
......
......@@ -4,7 +4,7 @@ Uploaders: Ghislain Antony Vaillant <ghisvail@gmail.com>
Section: libs
Priority: optional
Build-Depends: cmake (>= 3.0),
debhelper (>= 10),
debhelper (>= 11),
dh-python,
dpkg-dev (>= 1.17.14),
googletest <!nocheck>,
......@@ -15,9 +15,9 @@ Build-Depends: cmake (>= 3.0),
python3-numpy,
python3-setuptools,
swig (>= 3.0.12)
Standards-Version: 4.1.1
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/simpleitk.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/simpleitk.git
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/med-team/simpleitk
Vcs-Git: https://salsa.debian.org/med-team/simpleitk.git
Homepage: http://www.simpleitk.org/
Package: libsimpleitk1.0
......
From: Bradley Lowekamp <blowekamp@mail.nih.gov>
Date: Thu, 8 Mar 2018 09:14:49 -0500
Subject: Relax the "short" image testing tolerance for discrete Gaussian
On the i386 Debian build, it has been reported that the
BasicFilters.DiscreteGaussianImageFilter_short test is failing with a
RMS difference of 0.513965. This tolerance has already been relaxed
once, and further relaxing seems reasonable due to intermediate image
of float being converted to short without proper rounding.
While this is an indication the internal ITK algorithm could be
improved for portability and accuracy in ITK, it is not an indication
of a problem with the SimpleITK build.
---
Code/BasicFilters/json/DiscreteGaussianImageFilter.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Code/BasicFilters/json/DiscreteGaussianImageFilter.json b/Code/BasicFilters/json/DiscreteGaussianImageFilter.json
index ee9f677..3c23348 100644
--- a/Code/BasicFilters/json/DiscreteGaussianImageFilter.json
+++ b/Code/BasicFilters/json/DiscreteGaussianImageFilter.json
@@ -57,7 +57,7 @@
"tag" : "short",
"description" : "Simply run with a short image with default settings",
"settings" : [],
- "tolerance" : "0.5",
+ "tolerance" : "0.6",
"inputs" : [
"Input/RA-Slice-Short.nrrd"
]
Fix-build-with-ITKV3_COMPATIBILITY-enabled.patch
Fix-path-created-for-output-of-4D-images-in-test.patch
Relax-the-short-image-testing-tolerance.patch