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
Julien Cabieces
otb
Commits
f92185d4
Commit
f92185d4
authored
5 years ago
by
Cédric Traizet
Browse files
Options
Downloads
Patches
Plain Diff
DOC: update parameter documentation in PantexTextureExtraction
parent
d10ba5d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx
+9
-6
9 additions, 6 deletions
...plications/AppTextures/app/otbPantexTextureExtraction.cxx
with
9 additions
and
6 deletions
Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx
+
9
−
6
View file @
f92185d4
...
...
@@ -57,7 +57,7 @@ private:
SetDocLongDescription
(
"This application computes a texture-derived built-up presence index (PanTex) from textural"
"characteristics of scalar images. This i
ndex is the min value of the contrast in 8 directions
."
"characteristics of scalar images. This i
s a contrast textural measure based on co-occurance
."
);
SetDocLimitations
(
"None"
);
...
...
@@ -81,12 +81,14 @@ private:
AddParameter
(
ParameterType_OutputImage
,
"out"
,
"Output Image"
);
SetParameterDescription
(
"out"
,
"Output image containing the selected texture features."
);
AddParameter
(
ParameterType_Float
,
"min"
,
"Image Minimum"
);
SetParameterDescription
(
"min"
,
"Image Minimum"
);
AddParameter
(
ParameterType_Float
,
"min"
,
"Image minimum"
);
SetParameterDescription
(
"min"
,
"Input image minimum. If this parameter is not set, the application will compute "
"the minumum of the image."
);
MandatoryOff
(
"min"
);
AddParameter
(
ParameterType_Float
,
"max"
,
"Image Maximum"
);
SetParameterDescription
(
"max"
,
"Image Maximum"
);
AddParameter
(
ParameterType_Float
,
"max"
,
"Image maximum"
);
SetParameterDescription
(
"max"
,
"Input image maximum. If this parameter is not set, the application will compute "
"the maximum of the image."
);
MandatoryOff
(
"max"
);
AddParameter
(
ParameterType_Int
,
"sradx"
,
"Window radius (x direction)"
);
...
...
@@ -100,7 +102,8 @@ private:
SetDefaultParameterInt
(
"srady"
,
4
);
AddParameter
(
ParameterType_Int
,
"nbin"
,
"Number of bins per axis for histogram generation"
);
SetParameterDescription
(
"nbin"
,
"Number of bins per axis for histogram generation"
);
SetParameterDescription
(
"nbin"
,
"Number of bins per axis for histogram generation "
"(number of gray levels considered in the computation of co-occurance)."
);
SetDefaultParameterInt
(
"nbin"
,
8
);
AddRAMParameter
();
...
...
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