how to convert the satellite data to an image
8 次查看(过去 30 天)
显示 更早的评论
% 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);
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 CubeSat and Satellites 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!