1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-21 16:32:02 +01:00

DWT concatenation and CDR

This commit is contained in:
2024-01-12 14:22:05 +01:00
parent 1604b4712f
commit 13fddf4947
3 changed files with 63 additions and 6 deletions

View File

@ -46,6 +46,8 @@ public:
// DWT
std::vector<DWTLevel> forward(const DVec &data, const unsigned int level) const;
DVec backward(const std::vector<DWTLevel>& dwt) const;
// concatenate levels
static DVec concat(const std::vector<DWTLevel>& dwt, const int maxLevel = -1, const bool dropLow = false);
private:
DWTFilter filter_;
};