How to blank data within a circle
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have some grid data (m*n matrix) of the surface ocean, extending to the land in some areas. I have the conterminous United States map as a circle. Is there a way that I can blank everything that lies inside the map circle?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 9 Jan. 2012
Not sure what you have. If you have vertex coordinates of some region then you can use poly2mask to create a binary mask of the image that is true in the region and false outside the region. Then you can say array2D(binaryMask) = 0 to zero it out.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!