필터 지우기
필터 지우기

hw to include my image in this file?

조회 수: 1 (최근 30일)
riki singh
riki singh 2022년 6월 24일
답변: M. A. Hopcroft 2022년 6월 24일
i have got a code from file exchange ..it is helpful ..with slight modification according to my code..
I have to plot latitudes and longitudes on my image..given..
I have to plot latitudes and longitudes on..(cameraman.tif) image... format of my image is tiff only.
I am unable to do so.i am not not finding any option to insert my picture... so that lat and longitudes gets plotted on it
2021 version of matlab

답변 (1개)

M. A. Hopcroft
M. A. Hopcroft 2022년 6월 24일
You can use imread() and image() to put a graphic file into a figure axis:
mypic = imread('cameraman.tif');
figure; ha = gca;
image(ha,mypic);

카테고리

Help CenterFile Exchange에서 Mapping Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by