modifié : include/Attributes/SDAttributes.hpp modifié : include/Attributes/XYAttributes.hpp modifié : src/testMain.cpp
24 lines
624 B
C++
24 lines
624 B
C++
#ifndef _OTB_TRISKELE_SD_ATTRIBUTES_HPP
|
|
#define _OTB_TRISKELE_SD_ATTRIBUTES_HPP
|
|
|
|
#include "triskeleBase.hpp"
|
|
#include "CompAttribute.hpp"
|
|
#include "Attributes/AreaAttributes.hpp"
|
|
|
|
namespace otb {
|
|
namespace triskele {
|
|
|
|
class SDAttributes : public CompAttributeC<double> {
|
|
public:
|
|
inline SDAttributes (const Tree &tree, const AreaAttributes &areaAttributes, const unsigned int &treeCoreCount);
|
|
inline ~SDAttributes ();
|
|
protected:
|
|
inline void compute (const AreaAttributes &areaAttributes);
|
|
};
|
|
|
|
#include "SDAttributes.tpp"
|
|
} // triskele
|
|
} // otb
|
|
|
|
#endif // _OTB_TRISKELE_SD_ATTRIBUTES_HPP
|