Convert Array{UInt8, 3} to Matrix{RGB{N0f8}}

Hi all
I have a NumPy array, representing an image, I send from a python module to a Julia function.
The NumPy array is received in the Julia function as Array{UInt8, 3}. I need to convert it to Matrix{RGB{N0f8}}.
How do I do that?
Thank you all!
Alon

I found this solution:

Which solved my problem perfectly.