demo2

Contents

clear
load filelist
subdir = 'photos\';

n = length(files);

image 1

This is my new FUJIFILEM FinePix S1 digital camera

filename = [ subdir char(files{2})];
latlon = geoloc(filename);
rgb = imread(filename);
imshow(imresize(rgb,0.15))
photos\2014_1019_185336AA.JPG  	4608 x 2592 
FUJIFILM FinePix S1 
No GPSInfo

image 2

This is a LGE Nexus 4 (cell phone) with GPS enabled

filename = [ subdir char(files{3})];
latlon = geoloc(filename);
rgb = imread(filename);
imshow(imresize(rgb,0.15))
photos\IMG_20141019_161626.jpg  	2448 x 3264 
LGE Nexus 4 
GPS -16.52505111, 145.4642792

image 3

filename = [ subdir char(files{4})];
latlon = geoloc(filename);
rgb = imread(filename);
imshow(imresize(rgb,0.15))
photos\IMG_20150507_103545637_HDR.jpg  	1920 x 1080 
Motorola XT1080 
GPS 43.875975, -103.4542056

location (from Google maps)


% rgb = imread('MtRushmore.png');
% imshow(rgb);