Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
otb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
273
Issues
273
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main Repositories
otb
Commits
8231d1a0
Commit
8231d1a0
authored
Feb 29, 2008
by
Julien Michel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RadarSatModel.h manquant
parent
67b95527
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
0 deletions
+81
-0
Utilities/otbossim/include/ossim/projection/ossimRadarSatModel.h
...es/otbossim/include/ossim/projection/ossimRadarSatModel.h
+81
-0
No files found.
Utilities/otbossim/include/ossim/projection/ossimRadarSatModel.h
0 → 100644
View file @
8231d1a0
#ifndef ossimRadarSatModel_H
#define ossimRadarSatModel_H
#include <ossim/projection/ossimSensorModel.h>
#include <ossim/projection/ossimMapProjection.h>
#include <ossim/base/ossimIpt.h>
#include <ossim/base/ossimFilename.h>
#include <ossim/base/ossimGpt.h>
#include <ossim/base/ossimDpt.h>
#include <ossim/base/ossimEcefRay.h>
#include <ossim/base/ossimEcefPoint.h>
#include <ossim/base/ossimMatrix3x3.h>
#include <iostream>
class
PlatformPosition
;
class
SensorParams
;
class
RefPoint
;
/**
* @brief This class is able to direct localisation and indirect localisation using the RadarSat sensor model
* @author Magellium, Pacome Dentraygues
* @version 1.0
* @date 04-01-08
*/
class
OSSIMDLLEXPORT
ossimRadarSatModel
:
public
ossimSensorModel
{
public:
/**
* @brief Constructor
*/
ossimRadarSatModel
();
/**
* @brief Destructor
*/
~
ossimRadarSatModel
();
/**
* @brief This function is able to convert image coordonnates in world coordinates using the RadarSat sensor model
* @param image_point Coordinates of the image point
* @param heightEllipsoid Altitude of the world point
* @param worldPoint Coordinates of the world point (OUT)
*/
virtual
void
lineSampleHeightToWorld
(
const
ossimDpt
&
image_point
,
const
double
&
heightEllipsoid
,
ossimGpt
&
worldPoint
)
const
;
/**
* @brief Returns pointer to a new instance, copy of this.
* @remark This function always return NULL;
*/
virtual
ossimObject
*
dup
()
const
{
return
0
;
};
/**
* @brief
* @return true when it's better (more accurate / fast) to use forward (from ground to image) than inverse(from image to ground)
* @remark This function always return false
*/
inline
virtual
bool
useForward
()
const
{
return
false
;};
/**
* @brief Method to the load (recreate) the state of the object from a keyword list. Return true if ok or false on error.
* @return true if load OK, false on error
*/
virtual
bool
loadState
(
const
ossimKeywordlist
&
kwl
,
const
char
*
prefix
=
0
);
protected:
/**
* @brief Handle the position of the platform
*/
PlatformPosition
*
_platformPosition
;
SensorParams
*
_sensor
;
RefPoint
*
_refPoint
;
private:
bool
InitPlatformPosition
(
const
ossimKeywordlist
&
kwl
,
const
char
*
prefix
);
bool
InitSensorParams
(
const
ossimKeywordlist
&
kwl
,
const
char
*
prefix
);
bool
InitRefPoint
(
const
ossimKeywordlist
&
kwl
,
const
char
*
prefix
);
TYPE_DATA
};
#endif
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment