gpt4 book ai didi

python - plotly 中的相机位置如何工作

转载 作者:行者123 更新时间:2023-12-02 15:21:47 26 4
gpt4 key购买 nike

我正在尝试使用 plotly 绘制 3D 图形,需要调整相机位置。我发现有两种方法可以做到这一点:使用 Scene 对象的 camera 属性,或者使用 cameraposition 属性。我对这两个问题都有疑问,但这个问题与 cameraposition 有关:我不明白这是什么意思。

docs说:

 |      cameraposition [required=False] (value=camera position list or 1d numpy
| array):
| Sets the camera position with respect to the scene. The first entry
| (a list or 1d numpy array of length 4) sets the angular position of
| the camera. The second entry (a list or 1d numpy array of length 3)
| sets the (x,y,z) translation of the camera. The third entry (a
| scalar) sets zoom of the camera.
|
| Examples:
| [[0.2, 0.5, 0.1, 0.2], [0.1, 0, -0.1], 3]

相机的角度位置 的 4 个数字是什么意思?它们是角吗?在弧度?哪个角度?

最佳答案

下面是对 Plotly 的 3d 绘图相机控制的解释:

http://nbviewer.jupyter.org/github/etpinard/plotly-misc-nbs/blob/master/3d-camera-controls.ipynb

为了完整起见,这里有一个简短的总结:

可以使用 camera 而不是 cameraposition 因为它似乎有更简单的解释。

相机位置由三个向量确定:upcentereye

向上向量决定了页面的向上方向。默认为(x=0, y=0, z=1),即z轴指向上。

中心向量决定了场景中心的平移。默认情况下,没有平移:中心向量是 (x=0, y=0, z=0)

眼睛矢量确定关于原点的相机视点。默认值为 (x=1.25, y=1.25, z=1.25)

也可以通过减小眼向量的范数来放大。

name = 'eye = (x:0.1, y:0.1, z:1)'
camera = dict(
up=dict(x=0, y=0, z=1),
center=dict(x=0, y=0, z=0),
eye=dict(x=0.1, y=0.1, z=1)
)
fig = make_fig(camera, name)
py.iplot(fig, validate=False, filename=name)

关于python - plotly 中的相机位置如何工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35479194/

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