现在我正在尝试编写一些对图像进行子采样的 Halide 代码。基本上我希望图像的每一个 2 x 2 平方都减少到一个包含最大值的像素。一个简单的例子是转换
1 2 3 4
5 6 7 8
9 0 1 2
4 3 5 6
进入
6 8
9 6
现在我正在尝试一些类似的东西(我知道这会给出总和而不是最大值,但它是同一过程的一个玩具示例):
Halide::Image<uint8_t> input = load<uint8_t>("test.png");
Halide::Image<uint8_t> output(input.width() / 2, input.height() / 2, input.channels());
Halide::Func subsample;
Halide::Var c;
for (int i = 0; i < input.height(); i += 2) {
for (int j = 0; j < input.width(); j += 2) {
Halide::RDom r = Halide::RDom(i, 2, j, 2);
subsample(i, j, c) += input(r.x, r.y, c);
}
}
subsample.realize(output);
save(output, "test.png");
但是,此代码无限运行。 (我不确定为什么)。我知道我可以使用 Halide::RDom 来表示某个范围内的归约操作。但是,我发现在任何示例中都不能将变量传递给随机域对象。
编辑:
在与 Halide 玩了几次之后,我能够构建这个:
subsample(x, y, c) = Halide::max(input(2*x,2*y,c),input(2*x+1,2*y,c));
subsample(x, y, c) = Halide::max(subsample(x,y,c),input(2*x,2*y+1,c));
subsample(x, y, c) = Halide::max(subsample(x,y,c),input(2*x+1,2*y+1,c));
最大减少 2x2。但是,当我将它放入循环中时,它不会调用,因为它无法定义。反正有没有把它放在域减少方面?
最佳答案
我认为 argmax (这是嵌入式 Halide 功能)可用于您想要的东西:)
#include "Halide.h"
#include <stdio.h>
uint8_t data[16] = {
1, 2, 3, 4,
5, 6, 7, 8,
9, 0, 1, 2,
3, 4, 5, 6
};
using namespace Halide;
int main(int argc, char** argv) {
Halide::Image<uint8_t> input(4, 4);
for(int j = 0; j < 4; j++) {
for(int i = 0; i < 4; i++) {
input(j, i) = data[j*4 + i];
}
}
Halide::Func f, max2x2;
Halide::Var x, y, dx, dy;
Halide::Expr x_ = x * 2;
Halide::Expr y_ = y * 2;
f(x, y, dx, dy) = input(x_ + dx, y_ + dy);
RDom r(0, 2, 0, 2);
max2x2(x, y) = argmax(f(x, y, r.x, r.y))[2];
Halide::Image<uint8_t> output(2, 2);
max2x2.realize(output);
for(int j = 0; j < 2; j++) {
for(int i = 0; i < 2; i++) {
printf("%d ", output(j, i));
}
printf("\n");
}
return 0;
}
关于c++ - Halide 中的变畴减少,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29638195/