00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef MARSYAS_FMEASURE_H
00020 #define MARSYAS_FMEASURE_H
00021
00022 #include "MarSystem.h"
00023
00024 namespace Marsyas
00025 {
00042 class FMeasure: public MarSystem
00043 {
00044 private:
00045
00046 void addControls();
00047 MarControlPtr ctrl_numObsInRef_,
00048 ctrl_numObsInTest_,
00049 ctrl_numTruePos_,
00050 ctrl_reset_;
00051 mrs_natural numObsInRef_,
00052 numObsInTest_,
00053 numTruePos_;
00054 void myUpdate(MarControlPtr sender);
00055
00056 enum OutputIdx_t
00057 {
00058 kFMeasure,
00059 kPrecision,
00060 kRecall,
00061
00062 kNumOutputs
00063 };
00064
00065 public:
00066 FMeasure(std::string name);
00067 FMeasure(const FMeasure& a);
00068 ~FMeasure();
00069 MarSystem* clone() const;
00070
00071 void myProcess(realvec& in, realvec& out);
00072 };
00073
00074 }
00075
00076 #endif