Hello, Guys!
I am playing with images right now.
Is there a way I can plot a 3D image of RBG?
There must be I think.(cuz Julia is awesome!)
I’ve tried this code to see what are the combinations.
But I really like to see it at one glimpse in a 3D image.
[
[RGB(i, j, 0) for i in 0:0.1:1, j in 0:0.1:1]
[RGB(i, 0, j) for i in 0:0.1:1, j in 0:0.1:1]
[RGB(0, i, j) for i in 0:0.1:1, j in 0:0.1:1]
]
Thanks!