How to make a logical mask using a shape file?
7 次查看(过去 30 天)
显示 更早的评论
I am using following MATLAB code to create logical mask.
% Create a logical mask
[Z,R] = readgeoraster(img_file.name);
disp(R);
[lat,lon] = geographicGrid(R);
[Lon, Lat] = meshgrid(lon, lat);
logical_mask = reshape(isinterior(polygon, Lon(:), Lat(:)), size(Lon));
It is giving following erros
Incorrect number or types of inputs or outputs for function geographicGrid.
Error in ds_indices_caf (line 57)
[lat,lon] = geographicGrid(R);
I request to kindly suggest me how to do it correctly.
Dava
0 个评论
回答(1 个)
Image Analyst
2024-3-26
You have to define lat and lon as vectors before you use them in meshgrid to get the full matrices Lat and Lon as outputs.
8 个评论
Image Analyst
2024-3-28
I believe during the trial period you get free telephone help. Call them and work through it with an actual live person. I can't help you because I do not have that toolbox.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!