Files
q3DMASC/confusionmatrix.h
T

47 lines
993 B
C++

#ifndef CONFUSIONMATRIX_H
#define CONFUSIONMATRIX_H
#include <QWidget>
#include <set>
#include "CCTypes.h"
#include <opencv2/core/mat.hpp>
namespace Ui {
class ConfusionMatrix;
}
class ConfusionMatrix : public QWidget
{
Q_OBJECT
public:
enum metrics
{
PRECISION = 0,
RECALL = 1,
F1_SCORE = 2
};
explicit ConfusionMatrix(std::vector<ScalarType>& actual, std::vector<ScalarType>& predicted, QWidget *parent = nullptr);
~ConfusionMatrix();
void computePrecisionRecallF1Score(cv::Mat& matrix, cv::Mat& precisionRecallF1Score);
float computeOverallAccuracy(cv::Mat& matrix);
void compute(std::vector<ScalarType>& actual, std::vector<ScalarType>& predicted);
void setSessionRun(QString session, int run);
float m_overallAccuracy;
bool save(QString filePath);
private:
std::set<ScalarType> classes;
int nbClasses;
Ui::ConfusionMatrix *ui;
cv::Mat confusionMatrix;
cv::Mat precisionRecallF1Score;
std::vector<ScalarType> class_numbers;
};
#endif // CONFUSIONMATRIX_H