23 lines
658 B
C++
23 lines
658 B
C++
#ifndef _OTB_TRISKELE_MOI_ATTRIBUTES_HPP
|
|
#define _OTB_TRISKELE_MOI_ATTRIBUTES_HPP
|
|
|
|
#include "triskeleBase.hpp"
|
|
#include "CompAttribute.hpp"
|
|
|
|
namespace otb {
|
|
namespace triskele {
|
|
|
|
class MoIAttributes : public CompAttributeC<double> {
|
|
public:
|
|
inline MoIAttributes (const Tree &tree, const AreaAttributes &areaAttributes, const XYAttributes &xyAttributes, const unsigned int &treeCoreCount);
|
|
inline ~MoIAttributes ();
|
|
protected:
|
|
inline void compute (const AreaAttributes &areaAttributes, const XYAttributes &xyAttributes);
|
|
};
|
|
|
|
#include "MoIAttributes.tpp"
|
|
} // triskele
|
|
} // otb
|
|
|
|
#endif // _OTB_TRISKELE_MOI_ATTRIBUTES_HPP
|