Decoding color from a 48 bit BGR matrix
I have a matrix where the value is stored as 33088, 33000 and 1. I am aware of 8 bit maps ( 24 bit BGR ) , but I cant find the color palette for 48 bit BGR. The above matrix is stored as 3 channel with CV_16U.
your question is a bit unclear. there are no color palettes for 16bit images (and pallettes are never used in opencv at all)
what are you trying to achieve, and how does this format "get in your way" ?
the question is when i want to display red, then the matrix values in 8UC3 are cv::Scalar (0,0,255). What is the corresponding for 16 bit?
like
x*255
?