4

我正在尝试实现双线性插值函数,但由于某种原因,我得到了不好的输出。我似乎无法弄清楚出了什么问题,任何帮助走上正轨的人都将不胜感激。

double lerp(double c1, double c2, double v1, double v2, double x)
{
if( (v1==v2) ) return c1;
double inc = ((c2-c1)/(v2 - v1)) * (x - v1);
double val = c1 + inc;
return val;
};

void bilinearInterpolate(int width, int height)
{
// if the current size is the same, do nothing
if(width == GetWidth() && height == GetHeight())
    return;

//Create a new image
std::unique_ptr<Image2D> image(new Image2D(width, height));

// x and y ratios
double rx = (double)(GetWidth()) / (double)(image->GetWidth()); // oldWidth / newWidth
double ry = (double)(GetHeight()) / (double)(image->GetHeight());   // oldWidth / newWidth


// loop through destination image
for(int y=0; y<height; ++y)
{
    for(int x=0; x<width; ++x)
    {
        double sx = x * rx;
        double sy = y * ry;

        uint xl = std::floor(sx);
        uint xr = std::floor(sx + 1);
        uint yt = std::floor(sy);
        uint yb = std::floor(sy + 1);

        for (uint d = 0; d < image->GetDepth(); ++d)
        {
            uchar tl    = GetData(xl, yt, d);
            uchar tr    = GetData(xr, yt, d);
            uchar bl    = GetData(xl, yb, d);
            uchar br    = GetData(xr, yb, d);
            double t    = lerp(tl, tr, xl, xr, sx);
            double b    = lerp(bl, br, xl, xr, sx);
            double m    = lerp(t, b, yt, yb, sy);
            uchar val   = std::floor(m + 0.5);
            image->SetData(x,y,d,val);
        }
    }
}

//Cleanup
mWidth = width; mHeight = height;
std::swap(image->mData, mData);
}

输入图像(4 像素宽和高)

输入图像(4 像素宽和高)

我的输出

我的输出

预期输出(Photoshop 的双线性插值)

预期输出(Photoshop 的双线性插值)

4

1 回答 1

9

Photoshop 的算法假定每个源像素的颜色位于像素的中心,而您的算法假定颜色位于其左上角。与 Photoshop 相比,这会导致您的结果向上和向左移动半个像素。

另一种看待它的方法是,您的算法将 x 坐标范围映射(0, srcWidth)(0, dstWidth),而 Photoshop 映射(-0.5, srcWidth-0.5)(-0.5, dstWidth-0.5),并且在 y 坐标中相同。

代替:

double sx = x * rx;
double sy = y * ry;

您可以使用:

double sx = (x + 0.5) * rx - 0.5;
double sy = (y + 0.5) * ry - 0.5;

得到类似的结果。sx请注意,这可以为您提供和的负值sy

于 2012-05-23T13:19:01.117 回答