Skip to content
Snippets Groups Projects
Commit 99e1b1cd authored by Cédric Traizet's avatar Cédric Traizet
Browse files

ENH: use double instead of float to limit numerical error

parent 0ef9362a
No related branches found
No related tags found
No related merge requests found
......@@ -44,9 +44,9 @@ public:
itkTypeMacro(EndmemberNumberEstimation, otb::Application);
typedef otb::StreamingStatisticsVectorImageFilter<FloatVectorImageType, float> StreamingStatisticsVectorImageFilterType;
typedef otb::VirtualDimensionality<float> VirtualDimensionalityType;
typedef otb::EigenvalueLikelihoodMaximisation<float> EigenvalueLikelihoodMaximisationType;
typedef otb::StreamingStatisticsVectorImageFilter<FloatVectorImageType, double> StreamingStatisticsVectorImageFilterType;
typedef otb::VirtualDimensionality<double> VirtualDimensionalityType;
typedef otb::EigenvalueLikelihoodMaximisation<double> EigenvalueLikelihoodMaximisationType;
private:
void DoInit() override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment