gpt4 book ai didi

python-3.x - 使用 Plotly-python 绘图后防止相机重置

转载 作者:行者123 更新时间:2023-12-03 16:50:35 24 4
gpt4 key购买 nike

我正在尝试使用破折号和绘图为 3d Quiver 或 Cone 绘制一些数据,并且我想通过间隔输入定期更新图形!

所以我设法为图表制作了动画,但问题是每次更新后相机角度和变焦都会不断重置。
我有以下代码:

import dash
import dash_core_components as dcc
import dash_html_components as html
import plotly.graph_objs as go
from dash.dependencies import Output, Input
import pickle


#reading initial data
with open("shared.pkl", "rb") as f:
quivDic = pickle.load(f)


quiver_3d = go.Cone(x = quivDic["X"], y = quivDic["Y"], z = quivDic["Z"],
u = quivDic["U"], v = quivDic["V"], w = quivDic["W"],
colorscale = 'Blues', name = "testScatter")
data = [quiver_3d]
layout = dict(title ="Test Quiver", showlegend=False, aspectratio=dict(x=1, y=1, z=0.8),
camera_eye=dict(x=1.2, y=1.2, z=0.6))

fig = dict(data=data, layout=layout)


app = dash.Dash()
app.layout = html.Div([
html.Div(html.H4("TEST CONE")),
html.Div(dcc.Graph(id = "testCone", figure=fig)),
dcc.Interval(
id='graph-update',
interval=1000,
n_intervals = 0
),
])

@app.callback(Output('testCone', 'figure'),
[Input('graph-update', 'n_intervals')])
def refresh(n):
#reading new data
with open("shared.pkl", "rb") as f:
quivDic = pickle.load(f)

quiver_3d.x = quivDic["X"]
quiver_3d.y = quivDic["Y"]
quiver_3d.z = quivDic["Z"]
quiver_3d.u = quivDic["U"]
quiver_3d.v = quivDic["V"]
quiver_3d.w = quivDic["W"]

data = [quiver_3d]
#creating new figure
fig = dict(data=data)

return fig




app.run_server(debug=True)

有谁知道如何避免这个问题?
理想情况下,我想在不重新绘制整个框架的情况下更新数据,例如 matplotlib 中的“set_data”。否则有没有办法跟踪最新的摄像机角度并通过回调更新布局?
谢谢^^

最佳答案

关于python-3.x - 使用 Plotly-python 绘图后防止相机重置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58345327/

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