在使用Plotly绘制3D凸包图。

huangapple go评论113阅读模式
英文:

Plot convex-hull in 3D using plotly

问题

我正在尝试使用plotly来绘制一组点的三维凸包。我使用了Mesh3d对象,但表面没有正确创建(请参见下面的图片)。我该如何修复这个问题?

  1. import plotly.graph_objects as go
  2. import itertools, math, numpy as np
  3. from scipy.spatial import ConvexHull
  4. # This simply creates a set of points:
  5. n = 3
  6. m = 3
  7. E = np.array(list(itertools.product(np.arange(-1, 1.1, .5), repeat=m)))
  8. V = [
  9. [-2.20676418, 1.53670924, -1.5541674 ],
  10. [ 0.63437404, 0.07306301, 3.82253086],
  11. [ 3.19989112, 0.71987311, 2.79373418]
  12. ]
  13. x = np.array([np.dot(V, e) for e in E])
  14. # Then I compute the convex hull using scipy:
  15. xc = x[ConvexHull(x).vertices]
  16. fig = go.Figure()
  17. fig.add_trace(go.Mesh3d(x=xc[:, 0], y=xc[:, 1], z=xc[:, 2], color="blue", opacity=.5))
  18. fig

当前输出是:

在使用Plotly绘制3D凸包图。

英文:

I am trying to use plotly to plot the 3D convex-hull of a set of points. I am using Mesh3d objects but the surfaces are not created correctly (see the picture below). How can I fix this?

  1. import plotly.graph_objects as go
  2. import itertools, math, numpy as np
  3. from scipy.spatial import ConvexHull
  4. # This simply creates a set of points:
  5. n = 3
  6. m = 3
  7. E = np.array(list(itertools.product(np.arange(-1, 1.1, .5), repeat=m)))
  8. V = [
  9. [-2.20676418, 1.53670924, -1.5541674 ],
  10. [ 0.63437404, 0.07306301, 3.82253086],
  11. [ 3.19989112, 0.71987311, 2.79373418]
  12. ]
  13. x = np.array([np.dot(V, e) for e in E])
  14. # Then I compute the convex hull using scipy:
  15. xc = x[ConvexHull(x).vertices]
  16. fig = go.Figure()
  17. fig.add_trace(go.Mesh3d(x=xc[:, 0], y=xc[:, 1], z=xc[:, 2], color="blue", opacity=.5))
  18. fig

Current output is:

在使用Plotly绘制3D凸包图。

答案1

得分: 2

I think what you miss is the alphahull option.

If you want a convex hull you need to add alphahull=0:

  1. import plotly.graph_objects as go
  2. import itertools, math, numpy as np
  3. from scipy.spatial import ConvexHull
  4. # This simply creates a set of points:
  5. n = 3
  6. m = 3
  7. E = np.array(list(itertools.product(np.arange(-1, 1.1, .5), repeat=m)))
  8. V = [
  9. [-2.20676418, 1.53670924, -1.5541674 ],
  10. [ 0.63437404, 0.07306301, 3.82253086],
  11. [ 3.19989112, 0.71987311, 2.79373418]
  12. ]
  13. x = np.array([np.dot(V, e) for e in E])
  14. # Then I compute the convex hull using scipy:
  15. xc = x[ConvexHull(x).vertices]
  16. fig = go.Figure()
  17. fig.add_trace(go.Mesh3d(x=xc[:, 0],
  18. y=xc[:, 1],
  19. z=xc[:, 2],
  20. color="blue",
  21. opacity=.5,
  22. alphahull=0))
  23. fig

将给你想要的立方体:

在使用Plotly绘制3D凸包图。

  1. <details>
  2. <summary>英文:</summary>
  3. I think what you miss is the [alphahull](https://plotly.com/python/reference/#mesh3d-alphahull) option.
  4. If you want a convex hull you need to add `alphahull=0`:

import plotly.graph_objects as go
import itertools, math, numpy as np

from scipy.spatial import ConvexHull

This simply creates a set of points:

n = 3
m = 3
E = np.array(list(itertools.product(np.arange(-1, 1.1, .5), repeat=m)))
V = [
[-2.20676418, 1.53670924, -1.5541674 ],
[ 0.63437404, 0.07306301, 3.82253086],
[ 3.19989112, 0.71987311, 2.79373418]
]
x = np.array([np.dot(V, e) for e in E])

Then I compute the convex hull using scipy:

xc = x[ConvexHull(x).vertices]

fig = go.Figure()
fig.add_trace(go.Mesh3d(x=xc[:, 0],
y=xc[:, 1],
z=xc[:, 2],
color="blue",
opacity=.5,
alphahull=0))
fig

  1. will give you the vube you want:
  2. ![resutl][1]
  3. [1]: https://i.stack.imgur.com/WuizR.png
  4. </details>

huangapple
  • 本文由 发表于 2020年1月4日 00:04:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/59581676.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定