From 000aa8ab70709bb740407f76c298f3fbcc350dbb Mon Sep 17 00:00:00 2001 From: Manuel Grizonnet <manuel.grizonnet@orfeo-toolbox.org> Date: Tue, 12 Jun 2012 14:19:38 +0200 Subject: [PATCH] DOC: describe mask parameters in BlockMatching application --- Applications/DisparityMap/otbBlockMatching.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Applications/DisparityMap/otbBlockMatching.cxx b/Applications/DisparityMap/otbBlockMatching.cxx index 2071c2b562..3c4b75a9ff 100644 --- a/Applications/DisparityMap/otbBlockMatching.cxx +++ b/Applications/DisparityMap/otbBlockMatching.cxx @@ -166,11 +166,11 @@ private: SetParameterDescription("mask","This group of parameters allows to determine the masking parameters to prevent disparities estimation for some pixels of the left image"); AddParameter(ParameterType_InputImage,"mask.inleft","Discard left pixels from mask image"); - SetParameterDescription("mask.inleft","This parameter allows to provide a custom mask for the left image"); + SetParameterDescription("mask.inleft","This parameter allows to provide a custom mask for the left image.Block matching will be only perform on pixels inside the mask."); MandatoryOff("mask.inleft"); AddParameter(ParameterType_InputImage,"mask.inright","Discard right pixels from mask image"); - SetParameterDescription("mask.inright","This parameter allows to provide a custom mask for the right image"); + SetParameterDescription("mask.inright","This parameter allows to provide a custom mask for the right image.Block matching will be perform only on pixels inside the mask."); MandatoryOff("mask.inright"); AddParameter(ParameterType_Float,"mask.nodata","Discard pixels with no-data value"); -- GitLab