/usr/include/ossim/projection/ossimApplanixUtmModel.h is in libossim-dev 1.8.16-3+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | //*******************************************************************
// Copyright (C) 2005 Garrett Potts
//
// LGPL
//
// Author: Garrett Potts
//
//*******************************************************************
// $Id: ossimApplanixUtmModel.h 9094 2006-06-13 19:12:40Z dburken $
#ifndef ossimApplanixUtmModel_HEADER
#define ossimApplanixUtmModel_HEADER
#include <ossim/projection/ossimFcsiModel.h>
#include <ossim/projection/ossimMeanRadialLensDistortion.h>
#include <ossim/base/ossimDpt3d.h>
class OSSIM_DLL ossimApplanixUtmModel : public ossimSensorModel
{
public:
ossimApplanixUtmModel();
ossimApplanixUtmModel(const ossimApplanixUtmModel& src);
virtual ossimObject* dup()const;
virtual void imagingRay(const ossimDpt& image_point,
ossimEcefRay& image_ray) const;
void lineSampleToWorld(const ossimDpt& image_point,
ossimGpt& gpt) const;
virtual void lineSampleHeightToWorld(const ossimDpt& image_point,
const double& heightEllipsoid,
ossimGpt& worldPoint) const;
virtual void worldToLineSample(const ossimGpt& world_point,
ossimDpt& image_point) const;
virtual void updateModel();
void setPrincipalPoint(ossimDpt principalPoint);
void setPixelSize(const ossimDpt& pixelSize);
void setImageRect(const ossimDrect& rect);
void setFocalLength(double focalLength);
void setPlatformPosition(const ossimGpt& gpt);
virtual bool saveState(ossimKeywordlist& kwl,
const char* prefix=0) const;
virtual bool loadState(const ossimKeywordlist& kwl,
const char* prefix=0);
virtual void initAdjustableParameters();
/*!
* ossimOptimizableProjection
*/
// inline virtual bool useForward()const {return false;}
inline virtual bool useForward()const {return true;} //!ground to image faster (you don't need DEM) //TBC
virtual bool setupOptimizer(const ossimString& init_file); //!uses file path to init model
protected:
NEWMAT::Matrix theCompositeMatrix;
NEWMAT::Matrix theCompositeMatrixInverse;
double theOmega;
double thePhi;
double theKappa;
double theBoreSightTx;
double theBoreSightTy;
double theBoreSightTz;
ossimDpt thePrincipalPoint;
ossimDpt thePixelSize;
double theFocalLength;
ossimEcefPoint theEcefPlatformPosition;
ossimGpt thePlatformPosition;
ossim_int32 theUtmZone;
ossim_int8 theUtmHemisphere;
ossimDpt3d theUtmPlatformPosition;
ossimEcefVector theShiftValues;
ossimRefPtr<ossimMeanRadialLensDistortion> theLensDistortion;
ossimEcefPoint theAdjEcefPlatformPosition;
TYPE_DATA
};
#endif
|