From e6f49914cb60e129c90708d9ee167edc12e42fd4 Mon Sep 17 00:00:00 2001 From: Julien Malik Date: Fri, 8 Nov 2013 15:07:26 +0100 Subject: [PATCH] ENH: update doc of OrthoRectification, cleanup logs --- Applications/Projections/otbOrthoRectification.cxx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Applications/Projections/otbOrthoRectification.cxx b/Applications/Projections/otbOrthoRectification.cxx index a3fa6970c4..8a68235439 100644 --- a/Applications/Projections/otbOrthoRectification.cxx +++ b/Applications/Projections/otbOrthoRectification.cxx @@ -215,8 +215,13 @@ private: // Deformation Field Spacing AddParameter(ParameterType_Float, "opt.gridspacing", "Resampling grid spacing"); - SetDefaultParameterFloat("opt.gridspacing", 4.); - SetParameterDescription("opt.gridspacing", "Resampling is done according to a coordinate mapping grid, whose pixel size is set by this parameter. The closer to the output spacing this parameter is, the more precise will be the ortho-rectified image, but increasing this parameter allows to reduce processing time."); + SetDefaultParameterFloat("opt.gridspacing", 4.0); + SetParameterDescription("opt.gridspacing", + "Resampling is done according to a coordinate mapping deformation grid, " + "whose pixel size is set by this parameter." + "The closer to the output spacing this parameter is, " + "the more precise will be the ortho-rectified image," + "but increasing this parameter will reduce processing time."); MandatoryOff("opt.gridspacing"); // Doc example parameter settings @@ -539,8 +544,6 @@ private: void DoExecute() { - GetLogger()->Debug("Entering DoExecute\n"); - // Get the input image FloatVectorImageType* inImage = GetParameterImage("io.in"); -- GitLab