How to convert image to RGB ?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How to extract to RGB value(from jpg files)?
- I have so many files that I want to running at once. (import all files /Get the RGB vaule all files /export all files
- How to get the RGB values form like [R:G:B] (ex. [70: 150: 80] )
- I've never done MATLAB before. so I should know all function
0 comentarios
Respuestas (1)
Image Analyst
el 6 de Nov. de 2020
See the FAQ:
In the loop, you can do
rgbImage = imread(fileName);
[R, G, B] = imsplit(rgbImage);
0 comentarios
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!