blob: c208460ea57c6c534944824f7c4d8385397adb97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef MANIPULATIONHANDLER_H
#define MANIPULATIONHANDLER_H
#include <QObject>
#include <armadillo>
class ManipulationHandler
: public QObject
{
Q_OBJECT
public:
Q_ENUMS(Technique)
enum Technique {
TECHNIQUE_PLMP,
TECHNIQUE_LAMP,
TECHNIQUE_LSP,
TECHNIQUE_PEKALSKA
};
ManipulationHandler(const arma::mat &X,
const arma::uvec &cpIndices);
void setTechnique(Technique technique) { m_technique = technique; }
signals:
void mapChanged(const arma::mat &Y) const;
public slots:
void setCP(const arma::mat &Ys);
private:
arma::mat m_X;
arma::uvec m_cpIndices;
Technique m_technique;
};
#endif // MANIPULATIONHANDLER_H
|