我想使用Plots.jl绘制图像,例如简单的正弦曲线。这是我的代码:
using Plots
using Images
gr()
h = 400
w = 600
a = Array(RGB{FixedPointNumbers.UFixed{UInt8,8}}, h, w)
img = Image(a)
p=plot(img)
x = collect(0:0.1:2π)
plot!(x,sin(x))
png("Test")
但我得错了结果。这是怎么回事?
答案 0 :(得分:3)
这是一个快速的例子,我希望能给你一些线索:
julia> plot(img)
julia> plot!(x->200sin(.05x)+300, 0, 700, w=5)
您可能只是想确保您正在绘制与图像匹配的正确坐标。