Welcome to mirror list, hosted at ThFree Co, Russian Federation.

quantization_utils_test.cc « core « draco « src « dracoenc « draco « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4f0473f2049e20751205a5985154ef0e4f70465 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright 2016 The Draco Authors.
//
// 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 "draco/core/quantization_utils.h"

#include "draco/core/draco_test_base.h"

namespace draco {

class QuantizationUtilsTest : public ::testing::Test {};

TEST_F(QuantizationUtilsTest, TestQuantizer) {
  Quantizer quantizer;
  quantizer.Init(10.f, 255);
  EXPECT_EQ(quantizer.QuantizeFloat(0.f), 0);
  EXPECT_EQ(quantizer.QuantizeFloat(10.f), 255);
  EXPECT_EQ(quantizer.QuantizeFloat(-10.f), -255);
  EXPECT_EQ(quantizer.QuantizeFloat(4.999f), 127);
  EXPECT_EQ(quantizer.QuantizeFloat(5.f), 128);
  EXPECT_EQ(quantizer.QuantizeFloat(-4.9999f), -127);
  // Note: Both -5.f and +5.f lie exactly on the boundary between two
  // quantized values (127.5f and -127.5f). Due to rounding, both values are
  // then converted to 128 and -127 respectively.
  EXPECT_EQ(quantizer.QuantizeFloat(-5.f), -127);
  EXPECT_EQ(quantizer.QuantizeFloat(-5.0001f), -128);

  // Out of range quantization.
  // The behavior is technically undefined, but both quantizer and dequantizer
  // should still work correctly unless the quantized values overflow.
  EXPECT_LT(quantizer.QuantizeFloat(-15.f), -255);
  EXPECT_GT(quantizer.QuantizeFloat(15.f), 255);
}

TEST_F(QuantizationUtilsTest, TestDequantizer) {
  Dequantizer dequantizer;
  ASSERT_TRUE(dequantizer.Init(10.f, 255));
  EXPECT_EQ(dequantizer.DequantizeFloat(0), 0.f);
  EXPECT_EQ(dequantizer.DequantizeFloat(255), 10.f);
  EXPECT_EQ(dequantizer.DequantizeFloat(-255), -10.f);
  EXPECT_EQ(dequantizer.DequantizeFloat(128), 10.f * (128.f / 255.f));

  // Test that the dequantizer fails to initialize with invalid input
  // parameters.
  ASSERT_FALSE(dequantizer.Init(1.f, 0));
  ASSERT_FALSE(dequantizer.Init(1.f, -4));
}

TEST_F(QuantizationUtilsTest, TestDeltaQuantization) {
  // Test verifies that the quantizer and dequantizer work correctly when
  // initialized with a delta value.
  Quantizer quantizer_delta;
  quantizer_delta.Init(0.5f);

  Quantizer quantizer_range;
  quantizer_range.Init(50.f, 100);

  EXPECT_EQ(quantizer_delta.QuantizeFloat(1.2f), 2);
  EXPECT_EQ(quantizer_delta.QuantizeFloat(10.f),
            quantizer_range.QuantizeFloat(10.f));
  EXPECT_EQ(quantizer_delta.QuantizeFloat(-3.3f),
            quantizer_range.QuantizeFloat(-3.3f));
  EXPECT_EQ(quantizer_delta.QuantizeFloat(0.25f),
            quantizer_range.QuantizeFloat(0.25f));

  Dequantizer dequantizer_delta;
  dequantizer_delta.Init(0.5f);

  Dequantizer dequantizer_range;
  dequantizer_range.Init(50.f, 100);

  EXPECT_EQ(dequantizer_delta.DequantizeFloat(2), 1.f);
  EXPECT_EQ(dequantizer_delta.DequantizeFloat(-4),
            dequantizer_range.DequantizeFloat(-4));
  EXPECT_EQ(dequantizer_delta.DequantizeFloat(9),
            dequantizer_range.DequantizeFloat(9));
  EXPECT_EQ(dequantizer_delta.DequantizeFloat(0),
            dequantizer_range.DequantizeFloat(0));
}

}  // namespace draco