gpt4 book ai didi

python - 用 Python 从 3D 到 2D

转载 作者:行者123 更新时间:2023-12-01 05:41:57 25 4
gpt4 key购买 nike

我想要这个代码:

chains3D = [[] for k in range(colors)]
def addr(x,y,z): return x + (nx) * (y + (ny) * (z))
for x in range(nx):
for y in range(ny):
for z in range(nz):
if (image[x,y,z] == background):
chains3D[1].append(addr(x,y,z))
else:
chains3D[0].append(addr(x,y,z))

像这样:

chains2D = [[] for k in range(colors)]
def addr(x,y): return x + (nx) * y
for x in range(nx):
for y in range(ny):
if (image[x,y,0] == background):
chains2D[1].append(addr(x,y))
else:
chains2D[0].append(addr(x,y))

好的,我已经解决了代码问题,但现在出现此错误:

IndexError                                Traceback (most recent call last)
<ipython-input-5-6a7d44bd72b7> in <module>()
213 objectBoundaryChain = larBoundaryChain(partial_3,chains2D[1])
214 b2cells = csrChainToCellList(objectBoundaryChain)
--> 215 sup_cell_boundary = MKPOLS((V,[FV[f] for f in b2cells]))
216
217 # remove the (local) boundary (shared with the piece boundary) from the quotient cell

/Users/Fabio/larpy/lar.pyc in MKPOLS(model)
101 """
102 V, FV = model
--> 103 pols = [MKPOL([[V[v] for v in f],[range(1,len(f)+1)], None]) for f in FV]
104 return pols
105

IndexError: list index out of range

我不知道为什么 f 等于 b2cells 的最后一个数量,而不是第一个,但也许这不是产生此错误的真正问题

最佳答案

尚不完全清楚您正在尝试做什么以及什么不起作用,但看起来很奇怪的是您进行了转变:

return x + (nx) * (y + (ny) * (z))

进入:

return x + (nx) * (y + (ny))

不应该是:

return x + (nx) * y

相反?考虑到 nz 不会出现在您的 3D 版本中,ny 不应出现在 2D 版本中。

关于python - 用 Python 从 3D 到 2D,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17301795/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com