I am working on Data-exchange Julia-LabView - #13 by Eben60 . Now I’m trying to send image data to Julia. I get image now as 3xMxN array of UInt8. How to convert it to RGB? The following works, but it must be possible to avoid convesion to floats.
# r is a 3xMxN array of UInt8
rc = r/255.0
im2 = colorview(RGB, rc)