how to convert the satellite data to an image

6 ビュー (過去 30 日間)
Jincy
Jincy 2023 年 5 月 15 日
回答済み: KSSV 2023 年 5 月 15 日
% 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);

回答 (1 件)

KSSV
KSSV 2023 年 5 月 15 日
Read about imwrite.

カテゴリ

Help Center および File ExchangeCubeSat and Satellites についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by