convert BGRA8 image format to RGB format
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Jan
el 12 de Oct. de 2021
Do you have the pixels values as UINT8 array already? Then:
RGB = BGRA8(:, :, [3, 2, 1])
7 comentarios
Más respuestas (1)
Cam Salzberger
el 13 de Oct. de 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
Ver también
Categorías
Más información sobre Specialized Messages en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!