Coverage Report

Created: 2025-07-23 08:18

/src/libjxl/lib/jxl/enc_gaborish.cc
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
2
//
3
// Use of this source code is governed by a BSD-style
4
// license that can be found in the LICENSE file.
5
6
#include "lib/jxl/enc_gaborish.h"
7
8
#include <jxl/memory_manager.h>
9
10
#include <hwy/base.h>
11
12
#include "lib/jxl/base/data_parallel.h"
13
#include "lib/jxl/base/rect.h"
14
#include "lib/jxl/base/status.h"
15
#include "lib/jxl/convolve.h"
16
#include "lib/jxl/image.h"
17
#include "lib/jxl/image_ops.h"
18
19
namespace jxl {
20
21
Status GaborishInverse(Image3F* in_out, const Rect& rect, const float mul[3],
22
2.13k
                       ThreadPool* pool) {
23
2.13k
  JxlMemoryManager* memory_manager = in_out->memory_manager();
24
2.13k
  WeightsSymmetric5 weights[3];
25
  // Only an approximation. One or even two 3x3, and rank-1 (separable) 5x5
26
  // are insufficient. The numbers here have been obtained by butteraugli
27
  // based optimizing the whole system and the errors produced are likely
28
  // more favorable for good rate-distortion compromises rather than
29
  // just using mathematical optimization to find the inverse.
30
2.13k
  static const float kGaborish[5] = {
31
2.13k
      -0.09495815671340026, -0.041031725066768575,  0.013710004822696948,
32
2.13k
      0.006510206083837737, -0.0014789063378272242,
33
2.13k
  };
34
8.52k
  for (int i = 0; i < 3; ++i) {
35
6.39k
    double sum = 1.0 + mul[i] * 4 *
36
6.39k
                           (kGaborish[0] + kGaborish[1] + kGaborish[2] +
37
6.39k
                            kGaborish[4] + 2 * kGaborish[3]);
38
6.39k
    if (sum < 1e-5) {
39
0
      sum = 1e-5;
40
0
    }
41
6.39k
    const float normalize = static_cast<float>(1.0 / sum);
42
6.39k
    const float normalize_mul = mul[i] * normalize;
43
6.39k
    weights[i] = WeightsSymmetric5{{HWY_REP4(normalize)},
44
6.39k
                                   {HWY_REP4(normalize_mul * kGaborish[0])},
45
6.39k
                                   {HWY_REP4(normalize_mul * kGaborish[2])},
46
6.39k
                                   {HWY_REP4(normalize_mul * kGaborish[1])},
47
6.39k
                                   {HWY_REP4(normalize_mul * kGaborish[4])},
48
6.39k
                                   {HWY_REP4(normalize_mul * kGaborish[3])}};
49
6.39k
  }
50
  // Reduce memory footprint by only allocating a single plane and swapping it
51
  // into the output Image3F. Better still would be tiling.
52
  // Note that we cannot *allocate* a plane, as doing so might cause Image3F to
53
  // have planes of different stride. Instead, we copy one plane in a temporary
54
  // image and reuse the existing planes of the in/out image.
55
2.13k
  ImageF temp;
56
2.13k
  JXL_ASSIGN_OR_RETURN(temp,
57
2.13k
                       ImageF::Create(memory_manager, in_out->Plane(2).xsize(),
58
2.13k
                                      in_out->Plane(2).ysize()));
59
2.13k
  JXL_RETURN_IF_ERROR(CopyImageTo(in_out->Plane(2), &temp));
60
2.13k
  Rect xrect = rect.Extend(3, Rect(*in_out));
61
2.13k
  JXL_RETURN_IF_ERROR(Symmetric5(in_out->Plane(0), xrect, weights[0], pool,
62
2.13k
                                 &in_out->Plane(2), xrect));
63
2.13k
  JXL_RETURN_IF_ERROR(Symmetric5(in_out->Plane(1), xrect, weights[1], pool,
64
2.13k
                                 &in_out->Plane(0), xrect));
65
2.13k
  JXL_RETURN_IF_ERROR(
66
2.13k
      Symmetric5(temp, xrect, weights[2], pool, &in_out->Plane(1), xrect));
67
  // Now planes are 1, 2, 0.
68
2.13k
  in_out->Plane(0).Swap(in_out->Plane(1));
69
  // 2 1 0
70
2.13k
  in_out->Plane(0).Swap(in_out->Plane(2));
71
2.13k
  return true;
72
2.13k
}
73
74
}  // namespace jxl