1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
|
/*
* Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbWrapperApplication.h"
#include "otbWrapperApplicationFactory.h"
#include "otbObjectList.h"
#include "otbBandMathXImageFilter.h"
#include "otbMultiChannelExtractROI.h"
#include "itksys/SystemTools.hxx"
namespace otb
{
namespace Wrapper
{
class BandMathX : public Application
{
public:
/** Standard class typedefs. */
typedef BandMathX Self;
typedef Application Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** Standard macro */
itkNewMacro(Self);
itkTypeMacro(BandMathX, otb::Application);
typedef otb::MultiChannelExtractROI<FloatVectorImageType::InternalPixelType, FloatVectorImageType::InternalPixelType> MultiChannelExtractorType;
typedef otb::BandMathXImageFilter<FloatVectorImageType> BandMathImageFilterType;
private:
void DoInit() override
{
SetName("BandMathX");
SetDescription("This application performs mathematical operations on several multiband images.");
SetDocLongDescription(
"This application performs a mathematical operation on several multi-band "
"images and outputs the result into an image (multi- or mono-band, as "
"opposed to the BandMath OTB-application). The mathematical formula is "
"done by the muParserX library.\n\n"
"The list of features and the syntax of muParserX is available at [1].\n\n"
"As opposed to muParser (and thus the BandMath OTB-application [2]), "
"muParserX supports vector expressions which allows outputting multi-band "
"images.\n\n"
"Hereafter is a brief reference of the muParserX syntax\n\n"
"Fundamentals\n"
"------------\n\n"
"The formula can be written using:\n\n"
"* numerical values ( 2.3, -5, 3.1e4, ...)\n"
"* variables containing pixel values (please, note the indexing of "
"inputs from 1 to N). Examples for the first input image:\n\n"
" * ``im1`` a pixel from 1st input, made of n components (n bands)\n"
" * ``im1b2`` the 2nd component of a pixel from 1st input (band index is 1-based)\n"
" * ``im1b2N3x4`` a 3x4 pixels Neighbourhood of a pixel the 2nd component of a pixel from the 1st input\n"
" * ``im1PhyX`` horizontal (X-axis) spacing of the 1st input.\n"
" * ``im1PhyY`` vertical (Y-axis) spacing of the 1st input input.\n"
" * ``im1b2Mean`` mean of the 2nd component of the 1st input (global statistics)\n"
" * ``im1b2Mini`` minimum of the 2nd component of the 1st input (global statistics)\n"
" * ``im1b2Maxi`` maximum of the 2nd component of the 1st input (global statistics)\n"
" * ``im1b2Sum`` sum of the 2nd component of the 1st input (global statistics)\n"
" * ``im1b2Var`` variance of the 2nd component of the 1st input (global statistics)\n"
" * ``idxX`` and ``idxY`` are the indices of the current pixel (generic variables)\n"
"* binary operators:\n\n"
" * ``+`` addition, ``-`` subtraction, ``*`` multiplication, ``/`` division\n"
" * ``^`` raise x to the power of y\n"
" * ``<`` less than, ``>`` greater than, ``<=`` less or equal, ``>=`` greater or equal\n"
" * ``==`` equal, ``!=`` not equal\n"
" * logical operators: ``or``, ``and``, ``xor``\n"
" * bit manipulation: ``&`` (and), ``|`` (or), ``<<``(left shift) and ``>>`` (right shift)"
"* if-then-else operator: ``(condition ? value_true : value_false)``\n"
"* functions: abs(), exp(), log(), sin(), cos(), min(), max(), ...\n\n"
"Always keep in mind that this application only addresses mathematically "
"well-defined formulas. For instance, it is not possible to add vectors of"
" different dimensions (e.g. addition of a row vector with a column vector"
"), or a scalar to a vector or matrix, or divide two vectors, etc.\n\n"
"Thus, it is important to remember that a pixel of n components is always "
"represented as a row vector.\n\n"
"Example:\n"
" ``im1 + im2``\n"
" represents the addition of pixels from the 1st and 2nd inputs. This "
"expression is consistent only if both inputs have the same number of "
"bands.\n\n"
"Please note that it is also possible to use the following expressions"
" to obtain the same result:\n\n"
" * ``im1b1 + im2b1``\n"
" * ``im1b2 + im2b2``\n"
" * ...\n\n"
"Nevertheless, the first expression is by far much pleaseant. We call "
"this new functionality the 'batch mode' (performing the same operation "
"in a band-to-band fashion).\n\n"
"Operations involving neighborhoods of pixels\n"
"--------------------------------------------\n\n"
"Another new feature is the possibility to perform operations that "
"involve neighborhoods of pixels. Variables related to such neighborhoods "
"are always defined following the ``imIbJNKxP`` pattern, where:\n\n"
" - ``I`` is an number identifying the image input (remember, input #0 = im1, "
"and so on)\n"
" - ``J`` is an number identifying the band (remember, first band is indexed by 1)\n"
" - ``KxP`` are two numbers that represent the size of the neighborhood (first "
"one is related to the horizontal direction)\n\n"
"NB: All neighborhood are centered, thus ``K`` and ``P`` must be odd numbers.\n\n"
"Many operators come with this new functionality:\n\n"
" - dotpr\n"
" - mean\n"
" - var\n"
" - median\n"
" - vmin\n"
" - vmax\n"
" - etc.\n\n"
"For instance, if ``im1`` represents the pixel of a 3 bands image::\n\n"
" im1 - mean( im1b1N5x5, im1b2N5x5, im1b3N5x5 )\n\n"
"could represent a high pass filter (note that by implying three "
"neighborhoods, the operator mean returns a row vector of three components"
". It is a typical behaviour for many operators of this application).\n\n"
"In addition to the previous operators, other operators are available:\n\n"
" - existing operators/functions from muParserX, that were not originally "
"defined for vectors and matrices (e.g. cos, sin). These new "
"operators/functions keep the original names to which we added the prefix "
"``v`` for vector (``vcos``, ``vsin``, etc.)\n"
" - ``mult``, ``div`` and ``pow`` operators, that perform element-wise multiplication, "
"division or exponentiation of vector/matrices (e.g. ``im1 div im2``).\n"
" - ``mlt``, ``dv`` and ``pw`` operators, that perform multiplication, division or "
"exponentiation of vector/matrices by a scalar (e.g. ``im1 dv 2.0``).\n"
" - ``bands``, which is a very useful operator. It allows selecting specific "
"bands from an image, or to rearrange them in a new vector (e.g."
"``bands( im1, { 1, 2, 1, 1 } )`` produces a vector of 4 components made of "
"band 1, band 2, band 1 and band 1 values from the first input.\n\n"
"Note that curly brackets must be used in order to select the desired band"
"indices.\n\n"
"The application itself\n"
"----------------------\n\n"
"The application can use an expression supplied with the ``-exp`` parameter."
" It can also use an input context file, that defines variables and "
"expressions. An example of context file is given below::\n\n"
" #F expo 1.1\n"
" #M kernel1 { 0.1 , 0.2 , 0.3; 0.4 , 0.5 , 0.6; 0.7 , 0.8 , 0.9; 1 , 1.1"
", 1.2; 1.3 , 1.4 , 1.5 }\n"
" #E $dotpr( kernel1, im1b1N3x5 ); im2b1^expo$\n\n"
"As we can see, #I/#F allows the definition of an integer/float constant, "
"whereas #M allows the definition of a vector/matrix. In the latter case, "
"elements of a row must be separated by commas, and rows must be separated"
" by semicolons. It is also possible to define expressions within the same"
" txt file, with #E <expr> (see limitations, below).");
SetDocLimitations(
"The application is currently unable to produce one output image per "
"expression, contrary to otbBandMathXImageFilter. "
"Separating expressions by semicolons ``;`` will concatenate their results "
"into a unique multiband output image. \n\n"
"Matrix variables cannot be defined directly with the `-exp` parameter (because "
"the semicolon ``;`` operator is required to define matrices and already has another meaning). "
"A context file should be used when defining matrix variables.");
SetDocAuthors("OTB-Team");
SetDocSeeAlso(
"[1] https://beltoforion.de/article.php?a=muparserx\n\n"
"[2] BandMath");
AddDocTag(Tags::Manip);
AddParameter(ParameterType_InputImageList, "il", "Input image list");
SetParameterDescription("il", "Image list to perform computation on.");
AddParameter(ParameterType_OutputImage, "out", "Output Image");
SetParameterDescription("out", "Output image.");
AddParameter(ParameterType_String, "exp", "Expressions");
SetParameterDescription("exp", "Mathematical expression to apply.");
AddParameter(ParameterType_InputFilename, "incontext", "Import context");
SetParameterDescription("incontext", "A txt file containing user's constants and expressions.");
MandatoryOff("incontext");
AddParameter(ParameterType_OutputFilename, "outcontext", "Export context");
SetParameterDescription("outcontext", "A txt file where to save user's constants and expressions.");
MandatoryOff("outcontext");
AddRAMParameter();
// Doc example parameter settings
SetDocExampleParameterValue("il", "verySmallFSATSW_r.tif verySmallFSATSW_nir.tif verySmallFSATSW.tif");
SetDocExampleParameterValue("out", "apTvUtBandMathOutput.tif");
SetDocExampleParameterValue("exp", "\"cos( im1b1 ) + im2b1 * im3b1 - im3b2 + ndvi( im3b3, im3b4 )\"");
SetOfficialDocLink();
}
void DoUpdateParameters() override
{
// check if input context should be used
bool context_exists = this->ContextCheck();
// Check if the expression is correctly set
BandMathImageFilterType::Pointer math_filter = BandMathImageFilterType::New();
math_filter->SetManyExpressions(false);
// first thing, load context if there is one
if (context_exists)
math_filter->ImportContext(GetParameterString("incontext"));
// Only one expression is allowed '-exp'>'-incontext'
if (!HasValue("exp"))
SetParameterString("exp", math_filter->GetExpression(0));
if (HasValue("il") && HasValue("exp"))
{
math_filter->ClearExpression(); // remove expression set by context
math_filter->SetExpression(GetParameterString("exp")); // set expression
LiveCheck(math_filter);
}
}
// Check if the given filename is valid
bool ContextCheck(void)
{
bool context_exists = false;
if (IsParameterEnabled("incontext") && HasValue("incontext"))
{
std::string contextPath = GetParameterString("incontext");
// check that file exists
if (itksys::SystemTools::FileExists(contextPath, true))
{
context_exists = true;
}
}
return context_exists;
}
void LiveCheck(BandMathImageFilterType::Pointer math_filter)
{
std::vector<MultiChannelExtractorType::Pointer> extractors;
FloatVectorImageListType::Pointer inList = GetParameterImageList("il");
for (unsigned int i = 0; i < inList->Size(); i++)
{
FloatVectorImageType::Pointer inImg = inList->GetNthElement(i);
FloatVectorImageType::RegionType largestRegion = inImg->GetLargestPossibleRegion();
unsigned int nbChannels = inImg->GetNumberOfComponentsPerPixel();
MultiChannelExtractorType::Pointer extract = MultiChannelExtractorType::New();
extractors.push_back(extract);
extract->SetInput(inImg);
extract->SetStartX(largestRegion.GetIndex(0));
extract->SetStartY(largestRegion.GetIndex(1));
// Set extract size to 1 in case of global stats computation
extract->SetSizeX(1);
extract->SetSizeY(1);
for (unsigned int j = 0; j < nbChannels; ++j)
{
extract->SetChannel(j + 1);
}
math_filter->SetNthInput(i, extract->GetOutput());
}
try
{
math_filter->UpdateOutputInformation();
SetParameterDescription("exp", "Valid expression");
}
catch (itk::ExceptionObject& err)
{
// Change the parameter description to be able to have the
// parser errors in the tooltip
SetParameterDescription("exp", err.GetDescription());
// std::string error_string(err.GetDescription());
// otbAppLogINFO("There was an error while parsing the expression given "
// "its input:" + error_string );
}
catch (...)
{
SetParameterDescription("exp", "Other exception caught");
}
}
void DoExecute() override
{
// Get the input image list
FloatVectorImageListType::Pointer inList = GetParameterImageList("il");
// checking the input images list validity
const unsigned int nbImages = inList->Size();
if (nbImages == 0)
{
itkExceptionMacro("No input Image set...; please set at least one input image");
}
if ((!IsParameterEnabled("exp")) && (!IsParameterEnabled("incontext")))
{
itkExceptionMacro("No expression set...; please set and enable at least one expression");
}
BandMathImageFilterType::Pointer math_filter = BandMathImageFilterType::New();
math_filter->SetManyExpressions(false);
for (unsigned int i = 0; i < nbImages; i++)
{
FloatVectorImageType::Pointer currentImage = inList->GetNthElement(i);
currentImage->UpdateOutputInformation();
otbAppLogINFO(<< "Image #" << i + 1 << " has " << currentImage->GetNumberOfComponentsPerPixel() << " components");
math_filter->SetNthInput(i, currentImage);
}
bool context_exists = this->ContextCheck();
// first thing, load context if there is one
if (context_exists)
{
std::string context_string = GetParameterString("incontext");
math_filter->ImportContext(context_string);
otbAppLogINFO("Using Context: " << context_string << " for variables (and expression if no parameter -exp has been given).");
}
// Only one expression is allowed '-exp'>'-incontext'
math_filter->ClearExpression(); // remove expression set by context
std::string expStr = GetParameterString("exp");
otbAppLogINFO("Using expression: " << expStr);
math_filter->SetExpression(expStr);
if (IsParameterEnabled("outcontext") && HasValue("outcontext"))
math_filter->ExportContext(GetParameterString("outcontext"));
// Set the output image
SetParameterOutputImage("out", math_filter->GetOutput());
RegisterPipeline();
}
};
} // namespace Wrapper
} // namespace otb
OTB_APPLICATION_EXPORT(otb::Wrapper::BandMathX)
|