From a1956a4ff879eb2d34c7a0ca448f48ee6e64ce99 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Tue, 1 Sep 2015 20:45:02 -0300 Subject: Improvements related to visual representation of distortions. - New continuous color scale class; - Improvements in signal handler for calculating distortions; - Implementation of the NP(k) measure. --- distortionmeasure.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 distortionmeasure.h (limited to 'distortionmeasure.h') diff --git a/distortionmeasure.h b/distortionmeasure.h new file mode 100644 index 0000000..523f62b --- /dev/null +++ b/distortionmeasure.h @@ -0,0 +1,12 @@ +#ifndef DISTORTIONMEASURE_H +#define DISTORTIONMEASURE_H + +#include + +class DistortionMeasure +{ +public: + virtual arma::vec measure(const arma::mat &distA, const arma::mat &distB) = 0; +}; + +#endif // DISTORTIONMEASURE_H -- cgit v1.2.3