aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/mfcc_dct_test.cc
blob: 7526278fe9e9c324025af5bbe48eb09c57b62206 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/

#include "tensorflow/core/kernels/mfcc_dct.h"

#include <vector>

#include "tensorflow/core/platform/test.h"
#include "tensorflow/core/platform/types.h"

namespace tensorflow {

TEST(MfccDctTest, AgreesWithMatlab) {
  // This test verifies the DCT against MATLAB's dct function.
  MfccDct dct;
  std::vector<double> input = {1.0, 2.0, 3.0, 4.0, 5.0, 6.0};
  const int kCoefficientCount = 6;
  ASSERT_TRUE(dct.Initialize(input.size(), kCoefficientCount));
  std::vector<double> output;
  dct.Compute(input, &output);
  // Note, the matlab dct function divides the first coefficient by
  // sqrt(2), whereas we don't, so we multiply the first element of
  // the matlab result by sqrt(2) to get the expected values below.
  std::vector<double> expected = {12.1243556530, -4.1625617959, 0.0,
                                  -0.4082482905, 0.0,           -0.0800788912};
  ASSERT_EQ(output.size(), kCoefficientCount);
  for (int i = 0; i < kCoefficientCount; ++i) {
    EXPECT_NEAR(output[i], expected[i], 1e-10);
  }
}

TEST(MfccDctTest, InitializeFailsOnInvalidInput) {
  MfccDct dct1;
  EXPECT_FALSE(dct1.Initialize(-50, 1));
  MfccDct dct2;
  EXPECT_FALSE(dct1.Initialize(10, -4));
  MfccDct dct3;
  EXPECT_FALSE(dct1.Initialize(-1, -1));
  MfccDct dct4;
  EXPECT_FALSE(dct1.Initialize(20, 21));
}

}  // namespace tensorflow