EvaluationResult.hpp
Go to the documentation of this file.
1 
18 #pragma once
19 
20 #include "sstream"
21 
22 namespace ISM {
23 
25 {
26  unsigned int falsePositives;
27  unsigned int falseNegatives;
29 
30  std::string getDescription()
31  {
32  std::ostringstream s;
33  s << "False Positives : " << falsePositives << ", False Negatives : " << falseNegatives
34  << ", Average recognition runtime : " << averageRecognitionRuntime << "s" ;
35  return s.str();
36  }
37 };
38 
39 }
this namespace contains all generally usable classes.
std::string getDescription()


asr_lib_ism
Author(s): Hanselmann Fabian, Heller Florian, Heizmann Heinrich, Kübler Marcel, Mehlhaus Jonas, Meißner Pascal, Qattan Mohamad, Reckling Reno, Stroh Daniel
autogenerated on Wed Jan 8 2020 04:02:40