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()

在这里插入图片描述

ref

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

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值