Importing pixel array in Excel and creating an image
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Johoon Kim
el 9 de Nov. de 2018
Comentada: Johoon Kim
el 10 de Nov. de 2018
Hello everyone,
A MATLAB beginner here. I would like to ask a quick question. I believe this is simple for a lot of you folks. I have an image in the form of pixel array in Excel sheet. I wish to create an image from this and also be able to set a certain threshold so that the numerical values of any pixels that do not meet the threshold become zero.
I really really appreciate everyone's help in advance!
2 comentarios
Respuesta aceptada
Image Analyst
el 9 de Nov. de 2018
Try this:
data = importdata('AuL_1.csv', ',', 5);
grayImage = data.data;
subplot(2, 2, 1);
imshow(imadjust(grayImage), []);
subplot(2, 2, 2);
histogram(grayImage);
grid on;
threshold = 4;
mask = grayImage < threshold;
% Erase mask pixels.
grayImage(mask) = 0;
subplot(2, 2, 3);
imshow(imadjust(grayImage), []);

4 comentarios
Image Analyst
el 9 de Nov. de 2018
Editada: Image Analyst
el 9 de Nov. de 2018
Yes, just use ind2rgb() to create an RGB image. Or you can keep it grayscale and just use colormap() to change the way it's displayed.
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox 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!