From 4be78644644abfbaec08238bb19f90fb71b3e846 Mon Sep 17 00:00:00 2001
From: Otmane Lahlou <otmane.lahlou@c-s.fr>
Date: Wed, 22 Sep 2010 10:59:47 +0200
Subject: [PATCH] ENH : correct bug

---
 Examples/Projections/OrthoRectificationExample.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Examples/Projections/OrthoRectificationExample.cxx b/Examples/Projections/OrthoRectificationExample.cxx
index e0f8be66f0..d84026c148 100644
--- a/Examples/Projections/OrthoRectificationExample.cxx
+++ b/Examples/Projections/OrthoRectificationExample.cxx
@@ -152,7 +152,7 @@ int main(int argc, char* argv[])
 
   ImageType::SpacingType gridSpacing;
   gridSpacing[0] = 2.*atof(argv[9]);
-  gridSpacing[1] = 2.*-atof(argv[10]);
+  gridSpacing[1] = 2.*atof(argv[10]);
   orthoRectifFilter->SetDeformationFieldSpacing(gridSpacing);
 
   ImageType::PointType origin;
-- 
GitLab