Blame view

ResultsDialog.h 299 Bytes
3f2992b2c   bostx   V1.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #ifndef RESULTSDIALOG_H
  #define RESULTSDIALOG_H
  
  #include <QDialog>
  
  class ResultsDialog: public QDialog
  {
   public:
    ResultsDialog(qreal thresh1, qreal thresh2, int tp, int fp, int fn, int tn, qreal precision, qreal recall, qreal fScore, qreal accuracy, QWidget *parent = 0);
  
   private:
  };
  
  #endif