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
d79ca4eb
Commit
d79ca4eb
authored
14 years ago
by
Otmane Lahlou
Browse files
Options
Downloads
Patches
Plain Diff
WAR : intialization of the attribute in the same order of declaration
parent
5bb904df
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Projections/otbPhysicalToRPCSensorModelImageFilter.h
+2
-2
2 additions, 2 deletions
Code/Projections/otbPhysicalToRPCSensorModelImageFilter.h
Code/Projections/otbPhysicalToRPCSensorModelImageFilter.txx
+3
-4
3 additions, 4 deletions
Code/Projections/otbPhysicalToRPCSensorModelImageFilter.txx
with
5 additions
and
6 deletions
Code/Projections/otbPhysicalToRPCSensorModelImageFilter.h
+
2
−
2
View file @
d79ca4eb
...
@@ -33,7 +33,7 @@ namespace otb {
...
@@ -33,7 +33,7 @@ namespace otb {
* CS.
* CS.
*
*
* The number of points used to estimate the rpc sensor model is
* The number of points used to estimate the rpc sensor model is
* defined by the GridS
pacing
, note that at least 16 points are needed
* defined by the GridS
ize
, note that at least 16 points are needed
* to estimate a proper RPC sensor model, there are no warning when
* to estimate a proper RPC sensor model, there are no warning when
* the model estimated is inaccurate.
* the model estimated is inaccurate.
*
*
...
@@ -44,7 +44,7 @@ namespace otb {
...
@@ -44,7 +44,7 @@ namespace otb {
* implementation.(TODO)
* implementation.(TODO)
*
*
* Depending on the value of the DEMDirectory, an elevation fetched
* Depending on the value of the DEMDirectory, an elevation fetched
* from the SRT directory is used.
* from the SRT directory is used.
(TODO)
*
*
* This filter does not modify the image buffer, but only the
* This filter does not modify the image buffer, but only the
* metadata. Therefore, it is implemented as an InPlaceImageFilter.
* metadata. Therefore, it is implemented as an InPlaceImageFilter.
...
...
This diff is collapsed.
Click to expand it.
Code/Projections/otbPhysicalToRPCSensorModelImageFilter.txx
+
3
−
4
View file @
d79ca4eb
...
@@ -29,12 +29,12 @@ PhysicalToRPCSensorModelImageFilter<TImage>
...
@@ -29,12 +29,12 @@ PhysicalToRPCSensorModelImageFilter<TImage>
{
{
// Initialize the rpc estimator
// Initialize the rpc estimator
m_GCPsToSensorModelFilter = GCPsToSensorModelType::New();
m_GCPsToSensorModelFilter = GCPsToSensorModelType::New();
// Initialize the gridSize
m_GridSize.Fill(1);
// Initialize the DEMDirectory
// Initialize the DEMDirectory
m_DEMDirectory = "";
m_DEMDirectory = "";
// Initialize the gridSize
m_GridSize.Fill(1);
}
}
template <class TImage>
template <class TImage>
...
@@ -43,7 +43,6 @@ PhysicalToRPCSensorModelImageFilter<TImage>
...
@@ -43,7 +43,6 @@ PhysicalToRPCSensorModelImageFilter<TImage>
{
{
}
}
template <class TImage>
template <class TImage>
void
void
PhysicalToRPCSensorModelImageFilter<TImage>
PhysicalToRPCSensorModelImageFilter<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