double matrix to image conversion

111 visualizaciones (últimos 30 días)
BHANU SRINIVASA
BHANU SRINIVASA el 31 de En. de 2020
Comentada: BHANU SRINIVASA el 1 de Feb. de 2020
i have a double matrix i have to convert it to an image

Respuestas (2)

Cris LaPierre
Cris LaPierre el 31 de En. de 2020
How are you trying to view the image?
I suspect you need to use uint8 to first convert your doubles to a value between 0 and 255. See here.
  1 comentario
BHANU SRINIVASA
BHANU SRINIVASA el 1 de Feb. de 2020
i have converted the matrix to uint8 also the image is getting displayed in b/w

Iniciar sesión para comentar.


Subhadeep Koley
Subhadeep Koley el 1 de Feb. de 2020
Hi, try the code below
% Rescale your matrix in 0-255 range
rescaledMatrix = rescale(yourDoubleMatrix, 0, 255);
% Typecasted to uint8
rescaledMatrix = uint8(rescaledMatrix);
% Display your image
figure; imshow(rescaledMatrix, []);
This might help!
  8 comentarios
Subhadeep Koley
Subhadeep Koley el 1 de Feb. de 2020
The "q" is generated from "c1" by your algorithm only. Therefore it is not possible for me to comment on how this can be solved.
The code for the 3D scatter plot is below.
close all; clear all;
load q.mat;
r = q(:,:,1);
g = q(:,:,2);
b = q(:,:,3);
plot3(r(:),g(:),b(:),'.');
grid on; box on;
xlabel('Red Channel');
ylabel('Green Channel');
zlabel('Blue Channel');
title('Scatterplot of the Visible Bands');
BHANU SRINIVASA
BHANU SRINIVASA el 1 de Feb. de 2020
thank u very much i found the defect and got the answer
there was a mistake in the loop

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by