How could I add colors to regions in a global map?

1 次查看(过去 30 天)
Hi,
Wondering if is an easy and quick way to add colors to regions in a global map (matrix)?
Like this...(attached figure).
I would like to make a "mask map" with different numbers for the regions (colors) (e.g. South Pacific = 1, North Pacific = 2, etc) and then extract from a global map (matrix) the values for South Pacific = 1, North Pacific =2, etc.
In this case, the global map is a matrix with ocean temperature data.
  1 个评论
jonas
jonas 2018-10-21
编辑:jonas 2018-10-21
If you can define polygons for the different regions, then yes. You can probably find free shapefiles online.

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2018-10-21
If you have an image where each region is separated by solid black lines, you can identify each region with bwlabel(), then use label2rgb() to make a colored image
labeledImage = bwlabel(binaryImage);
rgbImage = label2rgb(labeledImage, yourColorMap);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Geodesy and Mapping 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by