Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
e3ce462b
Commit
e3ce462b
authored
14 years ago
by
Aurélien Bricier
Browse files
Options
Downloads
Patches
Plain Diff
DOC: added documentation to NaryParserImageFilter
parent
9b1c2139
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/BasicFilters/otbNaryParserImageFilter.h
+25
-2
25 additions, 2 deletions
Code/BasicFilters/otbNaryParserImageFilter.h
with
25 additions
and
2 deletions
Code/BasicFilters/otbNaryParserImageFilter.h
+
25
−
2
View file @
e3ce462b
...
...
@@ -32,10 +32,33 @@ namespace otb
{
/** \class NaryParserImageFilter
* \brief Performs a mathematical operation on the input images
* according to the formula specified by the user
* according to the formula specified by the user.
*
* This filter is based on the math parser library muParser.
* The built in function and operator list is available at:
* http://muparser.sourceforge.net/mup_features.html#idDef2
*
* OTB specific additional functions :
* ndvi(r, niri)
*
* OTB specific additional contants :
* e - log2e - log10e - ln2 - ln10 - pi - euler
*
* In order to use this filter, at least one input image is to be
* set. A associated variable name can be spécified or not by using
* the corresponding SetNthInput method. For the nth input image, if
* no associated variable name has been spefified, a default variable
* name is given by concatenating the letter "b" (for band) and the
* coresponding n.
* Next step is to set the expression according to the variable
* names. For example, in the default case with three input images the
* following expression is valid :
* "ndvi(b1,b2)*b3"
*
* \sa Parser
*
*
* \ingroup Streamed
* \ingroup Threaded
*/
template
<
class
TImage
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment