怎么给图片添加坐标轴?

我有一张图片,想给它增加坐标轴,有知道怎么添加吗?
我遇到的问题是我坐标轴设置好后,plot(x,y,img),y轴的坐标就会倒过来。

using DSP, FFTW, Images, ImageView, Plots

fig1 = zeros(Float64, 512,512)
for j in 1:size(fig1,2)
    fig1[:,j] .=  cos(2*pi/32*j) + 1.0  
end

fig1_fft = fftshift(fft(fig1))
fig1_fft_log = log.(abs.(fig1_fft)) .+ 1.0

fftx = collect((-1) * size(fig1_fft,2)/2: size(fig1_fft,2)/2-1) 
fftxf = (fftx .- fftx[257]) ./  size(fig1_fft,2)

Plots.plot(fftxf, fftxf, Gray.(fig1_fft_log), yflip = true)

image

你手动添加plot( yticks = [-0.4, -0.2, 0, 0.2, 0.4]) 看看