smooth a curve in images
This is from a post in stackoverflow.com . I make a copy here so that it’s easy to access.
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # @Time : 2019-03-09 01_17_59 Sat # @Author : yusisc (yusisc@gmail.com) import matplotlib matplotlib.use('TkAgg') import numpy as np from scipy import interpolate from matplotlib import pyplot as plt x = np.array([23, 24, 24, 25, 25]) y = np.array([13, 12, 13, 12, 13]) # append the starting x,y coordinates x = np.r_[x, x[0]] y = np.r_[y, y[0]] # fit splines to x=f(u) and y=g(u), treating both as periodic. also note that s=0 # is needed in order to force the spline fit to pass through all the input points. ret = interpolate.splprep([x, y], s=0, per=True) tck = ret[0] # evaluate the spline fits for 1000 evenly spaced distance values xi, yi = interpolate.splev(np.linspace(0, 1, 1000), tck) # plot the result fig, ax = plt.subplots(1, 1) ax.plot(x, y, 'or') ax.plot(xi, yi, '-b') plt.show()
python - Interpolating a closed curve using scipy - Stack Overflow
https://stackoverflow.com/questions/33962717/interpolating-a-closed-curve-using-scipy
python - Fitting a closed curve to a set of points - Stack Overflow
https://stackoverflow.com/questions/31464345/fitting-a-closed-curve-to-a-set-of-points
How to fit curve through cloud of points? OpenCV/C++ - Stack Overflow
https://stackoverflow.com/questions/32595265/how-to-fit-curve-through-cloud-of-points-opencv-c
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具