gpt4 book ai didi

julia - 如何将原始二进制数组数据加载到 Julia 中并显示它?

转载 作者:行者123 更新时间:2023-12-04 08:31:56 26 4
gpt4 key购买 nike

我想将原始图像数据(例如 .raw 来自 http://eeweb.poly.edu/~yao/EL5123/SampleData.html 的数据)加载到 Julia 中并显示它们。
基本上,我正在寻找一种将文件加载到 Julia 中的方法 Array{xxx}类型。
有任何想法吗?

最佳答案

这是代码以及结果图:

using Plots, Images, HTTP
r = HTTP.request("GET", "http://eeweb.poly.edu/%7Eyao/EL5123/image/lena_gray.raw")
img = reshape(r.body, 512, 512)
v = rotr90(colorview(Gray, img./256));
Plots.plot(v)
savefig("lena.png")
enter image description here

关于julia - 如何将原始二进制数组数据加载到 Julia 中并显示它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64976732/

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