簡體   English   中英

牧江animation中的slider position怎么改?

[英]How to change slider position in Makie animation?

我想在我的 topoplot 上創建 gif animation,我幾乎成功了。 唯一的問題是 slider position 不動。 如何讓它動起來?

看 - 滑塊位置不變

這是我的代碼:

xs = range(-0.3, length=size(dat_e, 2), step=1 ./ 128) 
sg = SliderGrid(f[2, 1],
    (label="time", range=xs, format = "{:.3f} ms", startvalue = 0),
)
time = sg.sliders[1].value
str = lift(t -> "[$(round(t, digits = 3)) ms]", time)
topo_slice = lift((t, data) -> mean(data[1:30, indexin(t, xs), :], dims=2)[:,1], time, dat_e)
topo_axis = Axis(f[1, 1], aspect = DataAspect(), title = "Interactive topoplot")
topo = eeg_topoplot!(topo_axis, topo_slice, # averaging all trial of 30 participants on Xth msec
    raw.ch_names[1:30]; 
    positions=pos, # produced  automatically from ch_names
    #interpolation=DelaunayMesh(),
    enlarge=1,
    extrapolation=GeomExtrapolation(enlarge=1.0, geometry=Circle),
    label_text=true) # aspect ratio, correlation of height and width

text!(topo_axis, 1, 1, text = str,  align = (:center, :center))
xlims!(-0.2, 1.2)
ylims!(-0.2, 1.2)
hidedecorations!(topo_axis)
hidespines!(topo_axis) 

framerate = 1
timestamps = [-0.3, 0.0828125, 0.1609375, 0.2390625]

record(f, "animations/time_animation.gif", timestamps;
        framerate = framerate) do z
    sg.sliders[1].value[] = z
    time[] = z

也許這會成功:

Makie.set_close_to!(sg.sliders[1], z)

(使用它來將值設置為z

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM