/usr/include/ossim/point_cloud/ossimGenericPointCloudHandler.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 | //**************************************************************************************************
//
// OSSIM (http://trac.osgeo.org/ossim/)
//
// License: MIT -- See LICENSE.txt file in the top level directory for more details.
//
//**************************************************************************************************
// $Id: ossimGenericPointCloudHandler.h 23654 2015-12-08 19:04:09Z gpotts $
#ifndef ossimGenericPointCloudHandler_HEADER
#define ossimGenericPointCloudHandler_HEADER 1
#include <ossim/point_cloud/ossimPointCloudHandler.h>
#include <ossim/point_cloud/ossimPointBlock.h>
#include <ossim/base/ossimGpt.h>
#include <ossim/base/ossimGrect.h>
#include <vector>
using namespace std;
class OSSIM_DLL ossimGenericPointCloudHandler : public ossimPointCloudHandler
{
public:
ossimGenericPointCloudHandler(vector<ossimEcefPoint>& ecef_points);
ossimGenericPointCloudHandler(vector<ossimGpt>& ground_points);
virtual ~ossimGenericPointCloudHandler();
virtual ossim_uint32 getNumPoints() const;
virtual void getFileBlock(ossim_uint32 offset,
ossimPointBlock& block,
ossim_uint32 maxNumPoints=0xFFFFFFFF)const;
virtual ossim_uint32 getFieldCode() const;
virtual bool open(const ossimFilename& pointsFile);
virtual void close();
protected:
ossimGenericPointCloudHandler() {}
ossimPointBlock m_pointBlock;
};
#endif /* #ifndef ossimPdalReader_HEADER */
|