Skip to content
Snippets Groups Projects
Commit fb39088c authored by Julien Malik's avatar Julien Malik
Browse files

COMP: 'far' is reserved on windows

parent f349dd34
No related branches found
No related tags found
No related merge requests found
......@@ -91,15 +91,15 @@ public:
m_NumberOfPixels = n;
}
void SetFAR(double far)
void SetFAR(double falseAlarmRate)
{
if (far < 0)
far = 0;
if (falseAlarmRate < 0)
falseAlarmRate = 0;
if (far > 1)
far = 1;
if (falseAlarmRate > 1)
falseAlarmRate = 1;
m_FAR = far;
m_FAR = falseAlarmRate;
}
double GetFAR()
......
......@@ -42,7 +42,6 @@ int otbVirtualDimensionalityTest(int argc, char * argv[])
{
const char * infname = argv[1];
const char * outfname = argv[2];
double far = atof(argv[3]); // False Alarm Rate
StreamingStatisticsVectorImageFilterType::Pointer stats = StreamingStatisticsVectorImageFilterType::New();
......@@ -63,8 +62,8 @@ int otbVirtualDimensionalityTest(int argc, char * argv[])
for (int i = 2; i < 10; ++i)
{
double far = vcl_pow(static_cast<double>(10), static_cast<double>(-i));
vd->SetFAR(far);
double falseAlarmRate = vcl_pow(static_cast<double>(10), static_cast<double>(-i));
vd->SetFAR(falseAlarmRate);
vd->Compute();
std::cout << "FAR : 1E-" << i << " -> Nb Endmembers: " << vd->GetNumberOfEndmembers() << std::endl;
......
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