convert BGRA8 image format to RGB format
4 views (last 30 days)
Show older comments
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?
0 Comments
Accepted Answer
Jan
on 12 Oct 2021
Do you have the pixels values as UINT8 array already? Then:
RGB = BGRA8(:, :, [3, 2, 1])
7 Comments
More Answers (1)
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:
-Cam
See Also
Categories
Find more on Specialized Messages in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!