添加新行会导致numpy.asarray

时间:2019-05-04 17:10:55

标签: python numpy valueerror openmesh

在添加邻居语句(我用'new'注释)之前,一切正常。现在,当使用 numpy.asarray 时,出现以下错误:

ValueError:无法将输入数组从形状(3,3)广播到形状(3)。

我真的很困惑,因为新行没有更改旋转数组。

def rre(mesh, rotations):
"""
Relative Rotation Encoding (RRE).
Return a compact representation of all relative face rotations.
"""
all_rel_rotations = neighbors = []
for f in mesh.faces():
    temp = [] # new
    for n in mesh.ff(f):
        rel_rotation = np.matmul(rotations[f.idx()], np.linalg.inv(rotations[n.idx()]))
        all_rel_rotations.append(rel_rotation)
        temp.append(n.idx()) # new
    neighbors.append(temp) # new
all_rel_rotations = np.asarray(all_rel_rotations)
neighbors = np.asarray(neighbors) # new
return all_rel_rotations, neighbors

1 个答案:

答案 0 :(得分:2)

问题的根源很可能是:

all_rel_rotations = neighbors = []

在Python中,列表是可变的,并且all_rel_rotationsneighbors指向同一列表,因此,如果执行all_rel_rotations.append(42),您将看到neighbors = [42, ]

该行:

all_rel_rotations.append(rel_rotation)

附加2D数组,而

neighbors.append(temp)

将一维数组(或相反)附加到同一列表。然后:

all_rel_rotations = np.asarray(all_rel_rotations)

尝试转换为数组并感到困惑。

如果您需要列出操作

all_rel_rotations = []
neighbors = []