gpt4 book ai didi

c# - 三次 Hermite 样条曲线表现异常

转载 作者:太空狗 更新时间:2023-10-29 21:14:09 24 4
gpt4 key购买 nike

我正在尝试使用 Cubic Hermite Splines 绘制图表。我从这个 interpolation methods 页面获取了执行此操作的简单代码。

这是我的代码:

private float HermiteInterpolate(float y0, float y1, float y2, float y3, float mu)
{
var mu2 = mu * mu;

var a0 = -0.5f * y0 + 1.5f * y1 - 1.5f * y2 + 0.5f * y3;
var a1 = y0 - 2.5f * y1 + 2f * y2 - 0.5f * y3;
var a2 = -0.5f * y0 + 0.5f * y2;
var a3 = y1;

return (a0 * mu * mu2) + (a1 * mu2) + (a2 * mu) + a3;
}

使用此数据(y 值,从 0-1,x 值从 0-21 均匀分布):

0, 0.09448819, 0.1102362, 0.1338583, 0.1811024, 0.2283465 ,0.3543307, 0.4645669, 0.480315, 0.480315, 0.527559, 0.527559, 0.527559, 0.527559, 0.527559, 0.527559, 0.6062992, 0.6377953, 0.6377953, 0.6377953, 0.7480315

结果如下:

Hermite Graph

问题是,在图表的某些区域,线向下。查看数据,它从未减少。我不知道算法是否应该这样做,但对于我正在做的事情,我希望线条永远不会向下(如果我是手工绘制图形,我永远不会让它们指向下方) .

所以,

  • 图表有问题吗?
  • 算法应该这样做吗?如果是这样,是否有一种情况不会发生这种情况?
  • 我尝试过余弦插值,但不喜欢结果。

这是实际的绘图函数:

public void DrawGraph(IList<float> items)
{
for (var x = 0; x < Width; x++)
{
var percentThrough = (float)x / (float)Width;
var itemIndexRaw = items.Count * percentThrough;
var itemIndex = (int)Math.Floor(itemIndexRaw);

var item = items[itemIndex];
var previousItem = (itemIndex - 1) < 0 ? item : items[itemIndex - 1];
var nextItem = (itemIndex + 1) >= items.Count ? item : items[itemIndex + 1];
var nextNextItem = (itemIndex + 2) >= items.Count ? nextItem : items[itemIndex + 2];

var itemMu = FractionalPart(itemIndexRaw);

var pointValue = HermiteInterpolate(previousItem, item, nextItem, nextNextItem, itemMu);

WritePixel(x, (int)(pointValue * Height) - 1, (1 - FractionalPart(pointValue)), false);
WritePixel(x, (int)(pointValue * Height), 1.0f, false);
WritePixel(x, (int)(pointValue * Height) + 1, FractionalPart(pointValue), false);
}
}

最佳答案

这种行为是正常的。

插值方法会施加某些连续性条件,以提供平滑曲线的外观。对于 Hermite 插值,不存在通过一系列递增值的插值曲线也必须随处递增的条件,因此有时您会得到此处显示的效果。

有一种东西叫monotone cubic interpolation它做你想做的:如果数据点增加,插值曲线也会随处增加。

关于c# - 三次 Hermite 样条曲线表现异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8557098/

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