/usr/include/ossim/util/ossimVerticesFinderTool.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 | //**************************************************************************************************
//
// OSSIM Open Source Geospatial Data Processing Library
// See top level LICENSE.txt file for license information
//
//**************************************************************************************************
#ifndef ossimVerticesFinderUtil_HEADER
#define ossimVerticesFinderUtil_HEADER
#include <ossim/base/ossimFilename.h>
#include <ossim/base/ossimKeywordlist.h>
#include <ossim/util/ossimTool.h>
/*!
* Class for determining the active image corner vertices inside larger null-filled image rectangle.
*/
class OSSIMDLLEXPORT ossimVerticesFinderTool : public ossimTool
{
public:
ossimVerticesFinderTool();
~ossimVerticesFinderTool();
virtual void setUsage(ossimArgumentParser& ap);
virtual bool initialize(ossimArgumentParser& ap);
virtual void initialize(const ossimKeywordlist& kwl);
virtual bool execute();
virtual ossimString getClassName() const { return "ossimVerticesFinderUtil"; }
virtual void getKwlTemplate(ossimKeywordlist& kwl);
/** Used by ossimUtilityFactory */
static const char* DESCRIPTION;
protected:
ossimFilename m_inputFile;
ossimFilename m_outputFile;
ossim_uint32 m_entryIndex;
};
#endif
|