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 (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include "lib/jxl/image_ops.h"
#include <cstddef>
#include <cstring>
#include "lib/jxl/base/common.h"
#include "lib/jxl/base/compiler_specific.h"
#include "lib/jxl/base/status.h"
#include "lib/jxl/frame_dimensions.h"
#include "lib/jxl/image.h"
namespace jxl {
void PadImageToBlockMultipleInPlace(Image3F* JXL_RESTRICT in,
size_t block_dim) {
const size_t xsize_orig = in->xsize();
const size_t ysize_orig = in->ysize();
const size_t xsize = RoundUpTo(xsize_orig, block_dim);
const size_t ysize = RoundUpTo(ysize_orig, block_dim);
// Expands image size to the originally-allocated size.
in->ShrinkTo(xsize, ysize);
for (size_t c = 0; c < 3; c++) {
for (size_t y = 0; y < ysize_orig; y++) {
float* JXL_RESTRICT row = in->PlaneRow(c, y);
for (size_t x = xsize_orig; x < xsize; x++) {
row[x] = row[xsize_orig - 1];
}
}
const float* JXL_RESTRICT row_src = in->ConstPlaneRow(c, ysize_orig - 1);
for (size_t y = ysize_orig; y < ysize; y++) {
memcpy(in->PlaneRow(c, y), row_src, xsize * sizeof(float));
}
}
}
static void DoDownsampleImage(const ImageF& input, size_t factor,
ImageF* output) {
JXL_ASSERT(factor != 1);
output->ShrinkTo(DivCeil(input.xsize(), factor),
DivCeil(input.ysize(), factor));
size_t in_stride = input.PixelsPerRow();
for (size_t y = 0; y < output->ysize(); y++) {
float* row_out = output->Row(y);
const float* row_in = input.Row(factor * y);
for (size_t x = 0; x < output->xsize(); x++) {
size_t cnt = 0;
float sum = 0;
for (size_t iy = 0; iy < factor && iy + factor * y < input.ysize();
iy++) {
for (size_t ix = 0; ix < factor && ix + factor * x < input.xsize();
ix++) {
sum += row_in[iy * in_stride + x * factor + ix];
cnt++;
}
}
row_out[x] = sum / cnt;
}
}
}
StatusOr<ImageF> DownsampleImage(const ImageF& image, size_t factor) {
ImageF downsampled;
// Allocate extra space to avoid a reallocation when padding.
JXL_ASSIGN_OR_RETURN(
downsampled, ImageF::Create(DivCeil(image.xsize(), factor) + kBlockDim,
DivCeil(image.ysize(), factor) + kBlockDim));
DoDownsampleImage(image, factor, &downsampled);
return downsampled;
}
StatusOr<Image3F> DownsampleImage(const Image3F& opsin, size_t factor) {
JXL_ASSERT(factor != 1);
// Allocate extra space to avoid a reallocation when padding.
Image3F downsampled;
JXL_ASSIGN_OR_RETURN(
downsampled, Image3F::Create(DivCeil(opsin.xsize(), factor) + kBlockDim,
DivCeil(opsin.ysize(), factor) + kBlockDim));
downsampled.ShrinkTo(downsampled.xsize() - kBlockDim,
downsampled.ysize() - kBlockDim);
for (size_t c = 0; c < 3; c++) {
DoDownsampleImage(opsin.Plane(c), factor, &downsampled.Plane(c));
}
return downsampled;
}
} // namespace jxl
|