-
Notifications
You must be signed in to change notification settings - Fork 0
/
ksvd_dct2D.h
45 lines (36 loc) · 1 KB
/
ksvd_dct2D.h
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
38
39
40
41
42
43
44
45
//-----------------------------------------------------------
// Copyright (C) 2019 Piotr (Peter) Beben <pdbcas@gmail.com>
// See LICENSE included.
#ifndef KSVD_DCT2D_H
#define KSVD_DCT2D_H
#include "constants.h"
#include <Eigen/Dense>
#include <functional>
#include <vector>
void ksvd_dct2D(
bool useOpenMP,
const std::vector<Eigen::VectorXf>& Y,
const std::vector<Eigen::VectorXf>& U,
const std::vector<Eigen::VectorXf>& V,
Eigen::Index nfreq,
Eigen::Index latm,
int maxIters,
float maxError,
const std::function<void(
const Eigen::VectorXf&,
const Eigen::MatrixXf&,
Eigen::Index,
Eigen::VectorXf&,
Eigen::VectorXf&
)> sparseFunct,
Eigen::MatrixXf& D,
Eigen::MatrixXf& X
);
void print_error_dct2D(
const std::vector<Eigen::VectorXf>& Y,
const std::vector<Eigen::VectorXf>& U,
const std::vector<Eigen::VectorXf>& V,
const Eigen::MatrixXf& D,
const Eigen::MatrixXf& X,
Eigen::Index nfreq);
#endif // KSVD_DCT2D_H