|
@@ -16,6 +16,7 @@
|
|
|
|
|
|
#include "vislearning/cbaselib/FeaturePool.h"
|
|
#include "vislearning/cbaselib/FeaturePool.h"
|
|
|
|
|
|
|
|
+#ifdef NICE_USELIB_MATIO
|
|
#include <core/matlabAccess/MatFileIO.h>
|
|
#include <core/matlabAccess/MatFileIO.h>
|
|
|
|
|
|
const bool verbose = false;
|
|
const bool verbose = false;
|
|
@@ -314,9 +315,16 @@ bool generateHistogram( const structCommands &p_Command)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+#endif
|
|
int main(int argc, char **argv)
|
|
int main(int argc, char **argv)
|
|
{
|
|
{
|
|
|
|
+
|
|
|
|
+#ifdef NICE_USELIB_MATIO
|
|
|
|
+#ifndef __clang__
|
|
|
|
+#ifndef __llvm__
|
|
std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
|
|
std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
|
|
|
|
+#endif
|
|
|
|
+#endif
|
|
|
|
|
|
structCommands sCommand;
|
|
structCommands sCommand;
|
|
|
|
|
|
@@ -386,6 +394,9 @@ int main(int argc, char **argv)
|
|
{
|
|
{
|
|
std::cerr << "exception occured: " << e.what() << std::endl;
|
|
std::cerr << "exception occured: " << e.what() << std::endl;
|
|
}
|
|
}
|
|
|
|
+#else
|
|
|
|
+ return -1;
|
|
|
|
+#endif
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|