Commit 30588d96 authored by Cédric Traizet's avatar Cédric Traizet
Browse files

Merge branch 'spelling-errors' into 'develop'

Fix spelling errors.

See merge request orfeotoolbox/otb!599
parents c212ce9f d955d640
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
    <platform>Linux</platform>
    <application>
        <name>OrthoRectification</name>
        <descr>This application allows to ortho-rectify optical images from supported sensors.&#x0A;</descr>
        <descr>This application allows ortho-rectifying optical images from supported sensors.&#x0A;</descr>
        <doc>
            <name>Ortho-rectification</name>
            <longdescr>An inverse sensor model is built from the input image metadata to convert geographical to raw geometry coordinates. This inverse sensor model is then combined with the chosen map projection to build a global coordinate mapping grid. Last, this grid is used to resample using the chosen interpolation algorithm. A Digital Elevation Model can be specified to account for terrain deformations. &#x0A;In case of SPOT5 images, the sensor model can be approximated by an RPC model in order to speed-up computation.</longdescr>
+1 −1
Original line number Diff line number Diff line
@@ -315,7 +315,7 @@ private:

    // Interpolators
    AddParameter(ParameterType_Choice, "interpolator", "Interpolation");
    SetParameterDescription("interpolator", "This group of parameters allows to define how the input image will be interpolated during resampling.");
    SetParameterDescription("interpolator", "This group of parameters allows defining how the input image will be interpolated during resampling.");
    MandatoryOff("interpolator");

    // NN
+1 −1
Original line number Diff line number Diff line
@@ -302,7 +302,7 @@ private:
    }
    catch (...)
    {
      SetParameterDescription("exp", "Other exception catched");
      SetParameterDescription("exp", "Other exception caught");
    }
  }

+1 −1
Original line number Diff line number Diff line
@@ -488,7 +488,7 @@ private:
      // in this case, the pipeline cannot be resolved : the output image (wo)
      // won't be computed and a segfault can occur.
      otbAppLogFATAL(
          "w option has not been set : the ouput image cannot be produced."
          "w option has not been set : the output image cannot be produced."
          "Stop execution because the pipeline cannot be resolved");
    }

+1 −1
Original line number Diff line number Diff line
@@ -440,7 +440,7 @@ auto NewFunctorFilter(Functor f, itk::Size<2> radius)

/**
 * \struct NumberOfOutputBandsDecorator
 * \brief This struct allows to forward the operator of template
 * \brief This struct allows forwarding the operator of template
 *        parameter, while adding number of ouptut components service.
 *
 * Its purpose is to enable the use of lambda or functor witht
Loading