ResultsDialog.h 299 Bytes
#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