Displaying image directly from a link to a MATLAB figure

5 visualizaciones (últimos 30 días)
Dimitrios
Dimitrios el 27 de Mayo de 2014
Respondida: Hadi Salah el 5 de Mzo. de 2022
Is there a way to take an image directly from a link and insert it in a figure?
To be more clear an example follows:
A function with the form :
fun(latitude,longitude)
This function sould put in a figure an image of the area with the input latitude and longitude.It takes the data from google maps. Considering that the path of the link has the following form in google maps: ex.: https://www.google.com/maps/@55.3014235,10.9923162,7z where the first number the latitude,the second the longitude and the third(7z) the scale of the zoom.

Respuestas (2)

shantanu
shantanu el 27 de Mayo de 2014
Have you tried passing the Url to imread function?
'imread' can read an image from the given URL
you might have to do something like the pseudo code below in fun(latitude,longitude)
fun(latitude,longitude)
url= create a string of valid URL from latitude,longitude
img=imread(url);
imshow(img);
end
Hope this helps

Hadi Salah
Hadi Salah el 5 de Mzo. de 2022
fprintf('helleo')

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by