3

我想使用 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")

但我得到错误的结果。如何正确执行?

4

1 回答 1

5

这是一个简单的例子,我希望能给你一些线索:

julia> plot(img)

julia> plot!(x->200sin(.05x)+300, 0, 700, w=5)

您可能只想确保绘制到与图像匹配的正确坐标。

于 2017-01-17T19:54:23.947 回答