Suppose I have 3 channels as arrays, I tried displaying the image below in Jupyter but it doesn’t look correct:
using Images
R = 255*rand(100,100)
G = 255*rand(100,100)
B = 255*rand(100,100)
img = colorview(RGB, R, G, B)
How to tell Images.jl that the channels have numbers like 254.3
, 123.4
, etc?