/usr/include/ossim/projection/ossimLensDistortion.h is in libossim-dev 2.2.2-1.
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 | //*******************************************************************
// Copyright (C) 2000 ImageLinks Inc.
//
// MIT
//
// Author: Garrett Potts (gpotts@imagelinks.com)
//
// Description:
//
// ossimLensDistortion
//*******************************************************************
// $Id: ossimLensDistortion.h 15929 2009-11-16 18:20:46Z gpotts $
#ifndef ossimLensDistortion_HEADER
#define ossimLensDistortion_HEADER
#include <ossim/base/ossim2dTo2dTransform.h>
class OSSIM_DLL ossimLensDistortion : public ossim2dTo2dTransform
{
public:
ossimLensDistortion(const ossimDpt& callibratedCenter=ossimDpt(0,0))
:theCenter(callibratedCenter)
{
}
void setCenter(const ossimDpt& center)
{
theCenter = center;
}
const ossimDpt& getCenter()const{return theCenter;}
virtual void forward(const ossimDpt& input,
ossimDpt& output) const
{
distort(input, output);
}
virtual void inverse(const ossimDpt& input,
ossimDpt& output)
{
undistort(input, output);
}
virtual void distort(const ossimDpt& input, ossimDpt& output)const;
virtual void undistort(const ossimDpt& input, ossimDpt& output)const=0;
virtual bool saveState(ossimKeywordlist& kwl,
const char* prefix = 0)const;
virtual bool loadState(const ossimKeywordlist& kwl,
const char* prefix = 0);
protected:
ossimDpt theCenter;
TYPE_DATA
};
#endif
|