- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在做一个练习,以熟悉 scipy.optimize
中的 Python least_squares
。
该练习尝试将椭圆拟合到二维点列表中,从而最小化点与椭圆之间的平方距离之和。
也许数学方法不是正确的,但让我们假装它没问题,因为我认为我的困难在其他地方。
这个想法是首先编写一个函数来计算点和椭圆之间的距离,然后在优化器中使用这个函数。
我还将这个距离函数编程为一个最小化问题:给定一个查询点和椭圆的参数方程,我寻找连接查询点和属于椭圆的点的最小长度线段,其长度是所需的距离。
import math
import numpy as np
from scipy.optimize import least_squares
# I would like to fit an ellipse to these points (a point in each row):
p=[
[614.0471123474172,289.51195416538405],
[404.85868232180786,509.3183970173126],
[166.5322099316754,335.6006010213824],
[302.6076456817051,71.14357043842081],
[614.094939200562,285.48762845572804]
]
# This is the x of the parametric equation of an ellipse
# centered at (C_x,C_y), with axis R_x and R_y and angle
# of rotation theta. alpha is the parameter that describe
# the ellipse when going from 0 to 2pi.
def x_e(alpha,R_x,R_y,theta,C_x):
return R_x*math.cos(alpha)*math.cos(theta)-R_y*math.sin(alpha)*math.sin(theta)+C_x
# This is the y
def y_e(alpha,R_x,R_y,theta,C_y):
return R_x*math.cos(alpha)*math.sin(theta)+R_y*math.sin(alpha)*math.cos(theta)+C_y
points = np.array(p)
x=points[:,0]
y=points[:,1]
def residual_for_distance(params,x_q,y_q,R_x,R_y,theta,C_x,C_y):
alpha = params[0]
return (x_q-x_e(alpha,R_x,R_y,theta,C_x))**2+(y_q-y_e(alpha,R_x,R_y,theta,C_y))**2
def ellipse_point_distance(x_q,y_q,R_x,R_y,C_x,C_y,theta):
params_0 = np.array([math.atan2(y_q-C_y,x_q-C_x)])
result = least_squares(residual_for_distance,params_0,args=(x_q,y_q,R_x,R_y,theta,C_x,C_y))
d=math.sqrt(residual_for_distance(result.x,x_q,y_q,R_x,R_y,theta,C_x,C_y))
return d
现在我在一个简单的情况下测试ellipse_point_distance
:
x_q=1
y_q=1
R_x=1
R_y=1
C_x=0
C_y=0
theta=0
print(ellipse_point_distance(x_q,y_q,R_x,R_y,C_x,C_y,theta))
我得到了0.414213562373
,看起来不错,所以让我们继续解决拟合的最小化问题:
def residual_for_fit(params,x,y):
R_x = params[0]
R_y = params[1]
C_x = params[2]
C_y = params[3]
theta = params[4]
return ellipse_point_distance(x,y,R_x,R_y,C_x,C_y,theta)
params_0 = np.array([227,227,x.mean(),y.mean(),0])
result = least_squares(residual_for_fit,params_0,args=(x,y),verbose=1)
我收到此错误:
Traceback (most recent call last):
File "fit_ellipse.py", line 57, in <module>
result = least_squares(residual_for_fit,params_0,args=(x,y),verbose=1)
File "/home/aj/anaconda2/lib/python2.7/site-packages/scipy/optimize/_lsq/least_squares.py", line 799, in least_squares
f0 = fun_wrapped(x0)
File "/home/aj/anaconda2/lib/python2.7/site-packages/scipy/optimize/_lsq/least_squares.py", line 794, in fun_wrapped
return np.atleast_1d(fun(x, *args, **kwargs))
File "fit_ellipse.py", line 54, in residual_for_fit
return ellipse_point_distance(x,y,R_x,R_y,C_x,C_y,theta)
File "fit_ellipse.py", line 33, in ellipse_point_distance
params_0 = np.array([math.atan2(y_q-C_y,x_q-C_x)])
TypeError: only size-1 arrays can be converted to Python scalars
快速浏览一下 TypeError: only length-1 arrays can be converted to Python scalars while trying to exponentially fit data,我认为我解决了问题:
def ellipse_point_distance_2(x_q,y_q,R_x,R_y,C_x,C_y,theta):
params_0 = np.array([np.arctan2(y_q-C_y,x_q-C_x)])
result = least_squares(residual_for_distance,params_0,args=(x_q,y_q,R_x,R_y,theta,C_x,C_y))
d=math.sqrt(residual_for_distance(result.x,x_q,y_q,R_x,R_y,theta,C_x,C_y))
return d
我刚刚用 np.arctan2
替换了 math.atan2
,希望能得到最好的结果:
print(ellipse_point_distance_2(x_q,y_q,R_x,R_y,C_x,C_y,theta))
ellipse_point_distance_2
仍然不错(给出 0.414213562373
),所以我们在这里:
def residual_for_fit_2(params,x,y):
R_x = params[0]
R_y = params[1]
C_x = params[2]
C_y = params[3]
theta = params[4]
return ellipse_point_distance_2(x,y,R_x,R_y,C_x,C_y,theta)
params_0 = np.array([227,227,x.mean(),y.mean(),0])
result = least_squares(residual_for_fit_2,params_0,args=(x,y),verbose=1)
但现在我得到了一个不同的错误:
Traceback (most recent call last):
File "fit_ellipse.py", line 76, in <module>
result = least_squares(residual_for_fit_2,params_0,args=(x,y),verbose=1)
File "/home/aj/anaconda2/lib/python2.7/site-packages/scipy/optimize/_lsq/least_squares.py", line 799, in least_squares
f0 = fun_wrapped(x0)
File "/home/aj/anaconda2/lib/python2.7/site-packages/scipy/optimize/_lsq/least_squares.py", line 794, in fun_wrapped
return np.atleast_1d(fun(x, *args, **kwargs))
File "fit_ellipse.py", line 73, in residual_for_fit_2
return ellipse_point_distance_2(x,y,R_x,R_y,C_x,C_y,theta)
File "fit_ellipse.py", line 61, in ellipse_point_distance_2
result = least_squares(residual_for_distance,params_0,args=(x_q,y_q,R_x,R_y,theta,C_x,C_y))
File "/home/aj/anaconda2/lib/python2.7/site-packages/scipy/optimize/_lsq/least_squares.py", line 772, in least_squares
raise ValueError("`x0` must have at most 1 dimension.")
ValueError: `x0` must have at most 1 dimension.
现在我有点困惑......我认为我的问题与矢量化问题有关,但我无法解决它。
最佳答案
在此函数中,您需要更改两行:
def ellipse_point_distance(x_q,y_q,R_x,R_y,C_x,C_y,theta):
# params_0 = np.array([math.atan2(y_q-C_y,x_q-C_x)])
params_0 = np.array(math.atan2(y_q-C_y,x_q-C_x)) # removed inner square brackets
result = least_squares(residual_for_distance,params_0,args=(x_q,y_q,R_x,R_y,theta,C_x,C_y))
# d=math.sqrt(residual_for_distance(result.x,x_q,y_q,R_x,R_y,theta,C_x,C_y))
d=np.sqrt(residual_for_distance(result.x,x_q,y_q,R_x,R_y,theta,C_x,C_y)) # changed from math.sqrt to np.sqrt
return d
我认为你的代码仍然无法工作,但现在它可以正常运行了。如果您无法让 least_squares
执行您想要的操作,您可能需要发布另一个问题。
关于python - "only size-1 arrays can be converted to Python scalars"或 "` x0 ` must have at most 1 dimension",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55011581/
问题故障解决记录 -- Java RMI Connection refused to host: x.x.x.x .... 在学习JavaRMI时,我遇到了以下情况 问题原因:可
我正在玩 Rank-N-type 并尝试输入 x x .但我发现这两个函数可以以相同的方式输入,这很不直观。 f :: (forall a b. a -> b) -> c f x = x x g ::
这个问题已经有答案了: How do you compare two version Strings in Java? (31 个回答) 已关闭 8 年前。 有谁知道如何在Java中比较两个版本字符串
这个问题已经有答案了: How do the post increment (i++) and pre increment (++i) operators work in Java? (14 个回答)
下面是带有 -n 和 -r 选项的 netstat 命令的输出,其中目标字段显示压缩地址 (127.1/16)。我想知道 netstat 命令是否有任何方法或选项可以显示整个目标 IP (127.1.
我知道要证明 : (¬ ∀ x, p x) → (∃ x, ¬ p x) 证明是: theorem : (¬ ∀ x, p x) → (∃ x, ¬ p x) := begin intro n
x * x 如何通过将其存储在“auto 变量”中来更改?我认为它应该仍然是相同的,并且我的测试表明类型、大小和值显然都是相同的。 但即使 x * x == (xx = x * x) 也是错误的。什么
假设,我们这样表达: someIQueryable.Where(x => x.SomeBoolProperty) someIQueryable.Where(x => !x.SomeBoolProper
我有一个字符串 1234X5678 我使用这个正则表达式来匹配模式 .X|..X|X. 我得到了 34X 问题是为什么我没有得到 4X 或 X5? 为什么正则表达式选择执行第二种模式? 最佳答案 这里
我的一个 friend 在面试时遇到了这个问题 找到使该函数返回真值的 x 值 function f(x) { return (x++ !== x) && (x++ === x); } 面试官
这个问题在这里已经有了答案: 10年前关闭。 Possible Duplicate: Isn't it easier to work with foo when it is represented b
我是 android 的新手,我一直在练习开发一个针对 2.2 版本的应用程序,我需要帮助了解如何将我的应用程序扩展到其他版本,即 1.x、2.3.x、3 .x 和 4.x.x,以及一些针对屏幕分辨率
为什么案例 1 给我们 :error: TypeError: x is undefined on line... //case 1 var x; x.push(x); console.log(x);
代码优先: # CASE 01 def test1(x): x += x print x l = [100] test1(l) print l CASE01 输出: [100, 100
我正在努力温习我的大计算。如果我有将所有项目移至 'i' 2 个空格右侧的函数,我有一个如下所示的公式: (n -1) + (n - 2) + (n - 3) ... (n - n) 第一次迭代我必须
给定 IP 字符串(如 x.x.x.x/x),我如何或将如何计算 IP 的范围最常见的情况可能是 198.162.1.1/24但可以是任何东西,因为法律允许的任何东西。 我要带198.162.1.1/
在我作为初学者努力编写干净的 Javascript 代码时,我最近阅读了 this article当我偶然发现这一段时,关于 JavaScript 中的命名空间: The code at the ve
我正在编写一个脚本,我希望避免污染 DOM 的其余部分,它将是一个用于收集一些基本访问者分析数据的第 3 方脚本。 我通常使用以下内容创建一个伪“命名空间”: var x = x || {}; 我正在
我尝试运行我的test_container_services.py套件,但遇到了以下问题: docker.errors.APIError:500服务器错误:内部服务器错误(“ b'{” message
是否存在这两个 if 语句会产生不同结果的情况? if(x as X != null) { // Do something } if(x is X) { // Do something } 编
我是一名优秀的程序员,十分优秀!