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
1bdf66f2
Commit
1bdf66f2
authored
13 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Adding getters to retrieve v1, v2 and rho
parent
885b9685
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
Code/ChangeDetection/otbMultivariateAlterationDetectorImageFilter.h
+14
-0
14 additions, 0 deletions
...eDetection/otbMultivariateAlterationDetectorImageFilter.h
with
14 additions
and
0 deletions
Code/ChangeDetection/otbMultivariateAlterationDetectorImageFilter.h
+
14
−
0
View file @
1bdf66f2
...
...
@@ -80,6 +80,19 @@ public:
typedef
vnl_vector
<
RealType
>
VnlVectorType
;
typedef
vnl_matrix
<
RealType
>
VnlMatrixType
;
/** Get the linear combinations of bands of image 1 associated to
* multivariate alteration detector. This is a square matrix of
* size nbBand of image 1. */
itkGetMacro
(
V1
,
VnlMatrixType
);
/** Get the linear combinations of bands of image 2 associated to
* multivariate alteration detector. This is a square matrix of
* size nbBand of image 2. */
itkGetMacro
(
V2
,
VnlMatrixType
);
/** Get the correlation coefficient associated with each mad.*/
itkGetMacro
(
Rho
,
VnlVectorType
);
/** Connect one of the operands for pixel-wise addition */
void
SetInput1
(
const
TInputImage
*
image1
);
...
...
@@ -127,6 +140,7 @@ private:
VnlMatrixType
m_V2
;
VnlVectorType
m_Mean1
;
VnlVectorType
m_Mean2
;
VnlVectorType
m_Rho
;
};
}
// end namespace otb
...
...
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