gpt4 book ai didi

python - 延长线与另一条线平滑连接

转载 作者:太空狗 更新时间:2023-10-30 00:11:15 25 4
gpt4 key购买 nike

我有两条曲线,如下所示:

fig1

我正在寻找一种方法,通过将前者(蓝线)向上和向右延伸来平滑连接蓝色曲线和红色曲线,同时离开后者(红线)未受影响。方向很重要,我提到这一点是因为看起来继续向左走蓝线会更容易。我不能这样做(这在我的较大代码中没有意义)所以它必须向上和向右。

这是我到目前为止所做的(放大了两条线靠近的部分):

fig2

基本上,我使用来自两条曲线(黑点)的点样本插入一条新曲线。获取此图的 MWE 代码如下。

我现在需要做的是找到一种方法,将绿线从与红线相交的点修剪到与蓝线相交的点,并延长蓝线替换现在不再需要最后一段。

这是应用上述更改后蓝线的样子(手工制作):

fig3

绿线的修剪部分现在是蓝线的一部分。请注意,我有:

  1. 丢弃绿线超出与红线交点的额外点
  2. 丢弃超出与蓝线交点的绿线的额外点。
  3. 在丢弃超出绿线和蓝线交点向左延伸的蓝线部分后,将绿线的剩余部分附加到蓝线。

因为我已经有了插值曲线(绿线),所以我只需要一种方法:

  1. 如上所述,将其修剪到与其他两条曲线相交的点。
  2. 用新插值线的修剪部分替换蓝线的最后部分。

在这个特定的例子中,我使用了固定列表来绘制和执行计算,但是我有几对线需要执行类似的操作,所以解决方案必须足够通用才能考虑以下情况形状相似但曲线不同。我怎么能这样做?

我愿意接受使用 numpyscipy 或任何必要的解决方案。

这是MWE:

import numpy as np
import matplotlib.pyplot as plt

# Red line data.
x1 = [0.01, 0.04, 0.08, 0.11, 0.15, 0.18, 0.22, 0.25, 0.29, 0.32, 0.35, 0.38, 0.41, 0.44, 0.46, 0.49, 0.51, 0.54, 0.56, 0.58]
y1 = [2.04, 2.14, 2.24, 2.34, 2.44, 2.54, 2.64, 2.74, 2.84, 2.94, 3.04, 3.14, 3.24, 3.34, 3.44, 3.54, 3.64, 3.74, 3.84, 3.94]

# Blue line data.
x2 = [0.4634, 0.4497, 0.4375, 0.4268, 0.4175, 0.4095, 0.4027, 0.3971, 0.3925, 0.389, 0.3865, 0.3848, 0.384, 0.3839, 0.3845, 0.3857, 0.3874, 0.3896, 0.3922, 0.3951, 0.3982, 0.4016, 0.405, 0.4085, 0.412, 0.4154, 0.4186, 0.4215, 0.4242, 0.4265, 0.4283, 0.4297, 0.4304, 0.4305, 0.4298, 0.4284, 0.4261, 0.4228, 0.4185, 0.4132, 0.4067, 0.399, 0.39, 0.3796, 0.3679, 0.3546, 0.3397, 0.3232, 0.305, 0.285]
y2 = [1.0252, 1.0593, 1.0934, 1.1275, 1.1616, 1.1957, 1.2298, 1.2639, 1.298, 1.3321, 1.3662, 1.4003, 1.4344, 1.4685, 1.5026, 1.5367, 1.5708, 1.6049, 1.639, 1.6731, 1.7072, 1.7413, 1.7754, 1.8095, 1.8436, 1.8776, 1.9117, 1.9458, 1.9799, 2.014, 2.0481, 2.0822, 2.1163, 2.1504, 2.1845, 2.2186, 2.2527, 2.2868, 2.3209, 2.355, 2.3891, 2.4232, 2.4573, 2.4914, 2.5255, 2.5596, 2.5937, 2.6278, 2.6619, 2.696]

x3, y3 = [], []

# Store a small section of the blue line in these new lists: only those points
# closer than 0.2 to the last point in this line.
for indx,y2_i in enumerate(y2):
if (y2[-1]-y2_i)<=0.2:
y3.append(y2_i)
x3.append(x2[indx])

# The same as above but for the red line: store only those points between
# 0. and 0.4 in the y axis and with a larger x value than the last point in the
# blue line.
for indx,y1_i in enumerate(y1):
if 0. <(y1_i-y2[-1])<=0.4 and x1[indx] > x2[-1]:
y3.append(y1_i)
x3.append(x1[indx])

# Find interpolating curve that joins both segments stored in x3,y3.
poli_order = 3 # Order of the polynome.
poli = np.polyfit(y3, x3, poli_order)
y_pol = np.linspace(min(y3), max(y3), 50)
p = np.poly1d(poli)
x_pol = [p(i) for i in y_pol]

plt.plot(x1,y1, 'r')
plt.plot(x2,y2, 'b')
plt.plot(x_pol,y_pol, 'g')
plt.scatter(x3,y3,c='k')

plt.show()

最佳答案

正如其他人提到的,尝试使用样条曲线。您的平滑曲线在导数中不是那么平滑,从连续线到直线看起来像 f'(x) 中的不连续点。因此,我将边界从 0.4 收紧到 0.2,这只捕获了红线拟合的一个点。否则,样条曲线将围绕额外的红点进行过度插值。

使用 defs 的简单示例。从上面:

from scipy.interpolate import spline
sx = np.array(x2+x3)
sy = np.array(y2+y3)
t = np.arange(sx.size,dtype=float)
t /= t[-1]
N = np.linspace(0,1,2000)
SX = spline(t,sx,N,order=4)
SY = spline(t,sy,N,order=4)

plt.plot(x1,y1, 'r')
plt.plot(x2,y2, 'b')
plt.scatter(x3,y3,c='k')

plt.plot(SX, SY,'g',alpha=.7,lw=3)
plt.show()

enter image description here

这个问题是一个方便的引用:

Smooth spline representation of an arbitrary contour, f(length) --> x,y

关于python - 延长线与另一条线平滑连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20643637/

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