我是Arrayfire的新手,正在寻找2D纹理采样之类的方法。
float uvInit[] = { 0, 0, 1, 1, 1, 0, 0, 1 };
array uv = array(4, 2, uvInit, f32);
float texInit[] = { 1, 2, 3, 4 };
array tex = array(2, 2, texInit, f32);
array color = ???????;
// color should be 1d array { 1, 4, 3, 2 },
// e.g. { tex(0, 0), tex(1, 1), tex(1, 0), tex(0, 1) }.
搜索了文档但是没有找到类似的东西,我什至无法索引具有数组元素的数组...
array s = ..., g = ...;
gfor(seq i, ...) {
auto x = g(0, i); // take an element from g.
s(x); // ERROR: no matched function.
}
答案 0 :(得分:1)
ArrayFire中最接近插值的兄弟是下一页中列出的功能。
http://arrayfire.org/docs/group__approx__mat.htm
如果您不熟悉ArrayFire /索引,强烈建议您阅读文档教程。
http://arrayfire.org/docs/indexing.htm
以下网址提供了整个教程列表(可能不全面,但非常不错)。