I want to create an image using a matrix.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nikhil Chourasia
el 11 de Feb. de 2015
Comentada: Nikhil Chourasia
el 10 de Mzo. de 2015
1) Suppose i have a (8x8) matrix and i want this matrix to be converted into image (as shown in below image).
Note that each row of the matrix correspond to the each row of color in the image.
2) Also if i have R,G,B matrix, then how can i create the image (as shown in below image)
10 comentarios
Respuesta aceptada
Eduardo Márquez
el 13 de Feb. de 2015
Editada: Eduardo Márquez
el 13 de Feb. de 2015
Using:
imwrite(A,'Image.jpg')
where A is a matrix 3D, A(:,:,1) = Red channel, A(:,:,2) = Green Channel, A(:,:,3) = Blue Channel;
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Segmentation and Analysis 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!