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