Import Image from Screen Capture of Google Earth.
5 次查看(过去 30 天)
显示 更早的评论
I am applying screen capture to produce an image of the US using
Google Earth. However, when I read the image into MATLAB to plot
data over it the image becomes all white -- no red,green, or blue.
Note: it does display correctly without plotting any additional data
and using imshow.
My code is:
I = double(imread('USA.png'));
img = flipdim(I,1)
B = IMPRESIZE(img,[500,500],'nearest')
colormap HSV;
hold on;
....Plot Data....
Is there a way to import the image and plot scatter data over it?
Thanks,
Amanda
0 个评论
采纳的回答
Walter Roberson
2012-9-4
Same answer as for your earlier question http://www.mathworks.co.uk/matlabcentral/answers/47069-loaded-image-doesn-t-retain-separate-colors
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mapping Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!