Update similarity calc

This commit is contained in:
2025-03-09 15:14:21 +01:00
parent 1994e7ccb1
commit 266d250881
5 changed files with 73 additions and 56 deletions

View File

@@ -14,6 +14,8 @@ enum DrawingStage
done,
};
constexpr int numberOfFunc = 2;
class Vapp
{
public:
@@ -45,9 +47,9 @@ private:
int drawX = 0;
int drawY = 0;
void setUpManager();
std::array<float, 3> simil;
std::vector<std::array<float, 3>> similTable;
std::array<float, numberOfFunc> simil;
std::vector<std::array<float, numberOfFunc>> similTable;
void setUpTable();
};