INNER CODE UNIT · Python
fit_func
chonyy/AI-basketball-analysis · src/utils.py:62
def fit_func(x, a, b, c):
return a*(x ** 2) + b * x + c
def trajectory_fit(balls, height, width, shotJudgement, fig):
x = [ball[0] for ball in balls]
y = [height - ball[1] for ball in balls]
try:
params = curve_fit(fit_func, x, y)
[a, b, c] = params[0]
except:
print("fitting error")
a = 0
b = 0
c = 0
x_pos = np.arange(0, width, 1)
y_pos = [(a * (x_val ** 2)) + (b * x_val) + c for x_val in x_pos]