
modifié : include/Attributes/AreaAttributes.hpp modifié : include/Attributes/AreaAttributes.tpp modifié : include/Attributes/AverageAttributes.hpp modifié : include/Attributes/AverageAttributes.tpp modifié : include/Attributes/MoIAttributes.hpp modifié : include/Attributes/MoIAttributes.tpp modifié : include/Attributes/SDAttributes.hpp modifié : include/Attributes/SDAttributes.tpp modifié : include/Attributes/WeightAttributes.hpp modifié : include/Attributes/WeightAttributes.tpp modifié : include/Attributes/XYAttributes.hpp modifié : include/Attributes/XYAttributes.tpp modifié : include/CompAttribute.hpp modifié : include/CompAttribute.tpp modifié : include/triskeleDealThreads.tpp modifié : src/Appli/Option.cpp modifié : src/IImage.cpp modifié : src/apGenerator.cpp
32 lines
901 B
C++
32 lines
901 B
C++
#include "CompAttribute.hpp"
|
|
#ifndef _OTB_TRISKELE_WEIGHT_ATTRIBUTES_HPP
|
|
#define _OTB_TRISKELE_WEIGHT_ATTRIBUTES_HPP
|
|
|
|
#include <boost/chrono.hpp>
|
|
|
|
#include "triskeleBase.hpp"
|
|
|
|
namespace otb {
|
|
namespace triskele {
|
|
|
|
/** Attribute */
|
|
template<typename WeightT>
|
|
class WeightAttributes : public CompAttribute<WeightT> {
|
|
public:
|
|
inline WeightAttributes (const Tree &tree);
|
|
inline ~WeightAttributes ();
|
|
|
|
inline void setWeightBounds (Tree &tree);
|
|
template<typename PixelT>
|
|
inline void cut (vector<vector<PixelT> > &allBands, const AttributeProfiles<PixelT> &attributeProfiles,
|
|
const vector<WeightT> &thresholds) const;
|
|
|
|
virtual inline ostream &print (ostream &out) const { CompAttribute<WeightT>::print (out, "weight"); return out; }
|
|
};
|
|
|
|
#include "WeightAttributes.tpp"
|
|
} // triskele
|
|
} // otb
|
|
|
|
#endif // _OTB_TRISKELE_WEIGHT_ATTRIBUTES_HPP
|