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
2454972b
Commit
2454972b
authored
13 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Allowing access to tie points and optimize fit in sensor model adapter
parent
0ea9c0fc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/UtilitiesAdapters/OssimAdapters/otbSensorModelAdapter.cxx
+60
-1
60 additions, 1 deletion
...UtilitiesAdapters/OssimAdapters/otbSensorModelAdapter.cxx
Code/UtilitiesAdapters/OssimAdapters/otbSensorModelAdapter.h
+9
-0
9 additions, 0 deletions
Code/UtilitiesAdapters/OssimAdapters/otbSensorModelAdapter.h
with
69 additions
and
1 deletion
Code/UtilitiesAdapters/OssimAdapters/otbSensorModelAdapter.cxx
+
60
−
1
View file @
2454972b
...
...
@@ -25,15 +25,18 @@
#include
"ossim/projection/ossimProjection.h"
#include
"ossim/projection/ossimSensorModelFactory.h"
#include
"projection/ossimSensorModel.h"
#include
"ossim/ossimPluginProjectionFactory.h"
#include
"base/ossimTieGptSet.h"
namespace
otb
{
SensorModelAdapter
::
SensorModelAdapter
()
:
m_SensorModel
(
NULL
),
m_UseDEM
(
false
),
m_Epsilon
(
0.0001
),
m_NbIter
(
1
)
// FIXME keeping the original value but...
m_SensorModel
(
NULL
),
m_TiePoints
(
NULL
),
m_UseDEM
(
false
),
m_Epsilon
(
0.0001
),
m_NbIter
(
1
)
// FIXME keeping the original value but...
{
m_DEMHandler
=
DEMHandler
::
New
();
m_TiePoints
=
new
ossimTieGptSet
();
}
SensorModelAdapter
::~
SensorModelAdapter
()
...
...
@@ -43,6 +46,11 @@ SensorModelAdapter::~SensorModelAdapter()
delete
m_SensorModel
;
m_SensorModel
=
NULL
;
}
if
(
m_TiePoints
!=
NULL
)
{
delete
m_TiePoints
;
m_TiePoints
=
NULL
;
}
}
void
SensorModelAdapter
::
CreateProjection
(
const
ImageKeywordlist
&
image_kwl
)
...
...
@@ -186,4 +194,55 @@ void SensorModelAdapter::InverseTransformPoint(double lon, double lat, double h,
z
=
ossimGPoint
.
height
();
}
void
SensorModelAdapter
::
AddTiePoint
(
double
x
,
double
y
,
double
z
,
double
lon
,
double
lat
)
{
// Create the tie point
ossimDpt
imagePoint
(
x
,
y
);
ossimGpt
ossimGPoint
(
lat
,
lon
);
if
(
this
->
m_UseDEM
)
{
double
height
=
this
->
m_DEMHandler
->
GetHeightAboveMSL
(
lon
,
lat
);
if
(
!
ossim
::
isnan
(
height
))
{
ossimGPoint
.
height
(
height
);
}
}
else
if
(
z
!=
-
32768
)
{
ossimGPoint
.
height
(
z
);
}
// Add the tie point to the container
m_TiePoints
->
addTiePoint
(
new
ossimTieGpt
(
ossimGPoint
,
imagePoint
,
0
));
}
void
SensorModelAdapter
::
ClearTiePoints
()
{
m_TiePoints
->
clearTiePoints
();
}
double
SensorModelAdapter
::
Optimize
()
{
double
precision
=
0.
;
// If tie points and model are allocated
if
(
m_SensorModel
!=
NULL
)
{
// try to retrieve a sensor model
ossimSensorModel
*
sensorModel
=
NULL
;
sensorModel
=
dynamic_cast
<
ossimSensorModel
*>
(
m_SensorModel
);
if
(
sensorModel
!=
NULL
)
{
// Call optimize fit
precision
=
sensorModel
->
optimizeFit
(
*
m_TiePoints
);
}
}
// Return the precision
return
precision
;
}
}
// namespace otb
This diff is collapsed.
Click to expand it.
Code/UtilitiesAdapters/OssimAdapters/otbSensorModelAdapter.h
+
9
−
0
View file @
2454972b
...
...
@@ -23,6 +23,7 @@
#include
"otbDEMHandler.h"
class
ossimProjection
;
class
ossimTieGptSet
;
namespace
otb
{
...
...
@@ -54,6 +55,7 @@ public:
typedef
ossimProjection
*
InternalMapProjectionPointer
;
typedef
const
ossimProjection
*
InternalMapProjectionConstPointer
;
typedef
ossimTieGptSet
*
InternalTiePointsContainerPointer
;
/** Method for creation through the object factory. */
itkNewMacro
(
Self
);
...
...
@@ -75,6 +77,12 @@ public:
void
InverseTransformPoint
(
double
lon
,
double
lat
,
double
h
,
double
&
x
,
double
&
y
,
double
&
z
)
const
;
void
AddTiePoint
(
double
x
,
double
y
,
double
z
,
double
lon
,
double
lat
);
void
ClearTiePoints
();
double
Optimize
();
/** Is sensor model valid method. return false if the m_SensorModel is null*/
bool
IsValidSensorModel
();
...
...
@@ -88,6 +96,7 @@ private:
InternalMapProjectionPointer
m_SensorModel
;
InternalTiePointsContainerPointer
m_TiePoints
;
/** Object that read and use DEM */
DEMHandler
::
Pointer
m_DEMHandler
;
...
...
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