gpt4 book ai didi

c++ - 在像素的最近邻插值 OpenGL 中心的情况下会发生什么

转载 作者:太空狗 更新时间:2023-10-29 20:54:47 25 4
gpt4 key购买 nike

当在纹理中计算最近邻插值的像素与两个相邻像素的距离相同,并且该像素与它所在的两个像素的距离相等时,发生最近邻插值时会发生什么尝试在放大的情况下正确插值新像素。

OpenGL 是否采用两个像素并通过从两个相同长度距离的平均值中插入纹理的颜色,或者发生其他事情?

最佳答案

spec非常清楚如何从纹理坐标中选择纹素:

缩小

第 8.14 节指定了缩小行为(我在这里跳过了很多关于环绕模式等的内容,并解释了 2D 情况):

Let [s(x,y), t(x,y)] be the texture coordinates at screen position (x,y). Now we define u(x,y) = s(x,y) * texture_width and v(x,y) = t(x,y) * texture_height. In case of nearest neighbor interpolation, the texel is given by the integer coordinates (i,j), where i = floor(u(x,y)) and j = floor(v(x,y)).

让我们举个例子:假设我们有一个大小为 2x1 的纹理和一个 [0.5, 0.5] 的查找位置。在这种情况下,u(x,y) = 0.5 * 2 = 1 和 v(x,y) = 0.5 * 1 = 0.5。现在我们得到 i = floor(1) = 1 和 j = floor(0.5) = 0。因此,结果将是右侧纹素的颜色。

放大倍数

第 8.15 节指出放大的行为与缩小的行为完全相同。

关于c++ - 在像素的最近邻插值 OpenGL 中心的情况下会发生什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38030310/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com