필터 지우기
필터 지우기

how to convert the satellite data to an image

조회 수: 10 (최근 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 CenterFile Exchange에서 CubeSat and Satellites에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by