convert BGRA8 image format to RGB format

19 views (last 30 days)
L
L on 12 Oct 2021
Commented: Lon 16 Oct 2021
Is there a built-in function for conversion of BGRA8 image to RGB image? If there is no available function for the conversion, is there a way to make this conversion?

Accepted Answer

Jan
Jan on 12 Oct 2021
Do you have the pixels values as UINT8 array already? Then:
RGB = BGRA8(:, :, [3, 2, 1])
7 Comments
L
L on 13 Oct 2021
The issue with the structure is solved. The solution is to call the receive() function.
But, still there is a problem with the conversion from BGRA8 to RGB.
What can be the problem here?
Here is the screenshot, and the code. The BGRA8 image is 1010688x1 uint8 array.
msg = receive(sub);
img=msg.Data;
outImg = reshape(img, 672, 376, []);
outImg1=permute(outImg, [2 1 3 4]);
rgb=outImg1(:,:,[2 1 3]);
figure, imshow(rgb);

Sign in to comment.

More Answers (1)

Cam Salzberger
Cam Salzberger on 13 Oct 2021
Since the image data is coming out of a ROS message, you can use the ROS functions to extract the image from it:
Message object - readImage method
Message struct - rosReadImage function
-Cam
1 Comment
L
L on 16 Oct 2021
Thank you, the problem is solved now

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!