how to convert the satellite data to an image

6 visualizaciones (últimos 30 días)
Jincy
Jincy el 15 de Mayo de 2023
Respondida: KSSV el 15 de Mayo de 2023
% Load satellite data
sat_data = load('satellite_data.mat');
% Pre-process the data
sat_data = imadjust(sat_data,[0 1],[0.1 0.9]);
%adjust contrast
% Create an image matrix
image_data(:) = sat_dat(:);
% copy data to image matrix
% Display the image figure
imshow(image_data,[],'Colormap',jet);

Respuestas (1)

KSSV
KSSV el 15 de Mayo de 2023
Read about imwrite.

Categorías

Más información sobre CubeSat and Satellites en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by