Three dimensional arrays with poly2mask in each page

3 views (last 30 days)
Hi,
I need to create several poly2mask that are of size 612x924 I'm trying to do that with a for loop, I create a matrix 612x924x5 before the loop to save the variable.
But it doesn't work, it retrieve an "Error using poly2mask Too many input arguments" I did this:
polygons=zeros(612,924,count);
for w=1:1:count;
polygons(w)=poly2mask(x(:,w),y(:,w),sf(1),sf(2),w);
end
Does someone knows a better way to create this?, Or perhaps to save each polygon in a new variable?
Thank you, Martha

Accepted Answer

Geoff Hayes
Geoff Hayes on 25 Aug 2014
Martha - according to poly2mask, there are only four inputs to this function. You have specified five, so the error message Error using poly2mask Too many input arguments makes sense.
Your code is almost correct, it is just the assignment (and additional fifth parameter) that needs some work. Perhaps the following with do the trick
polygons=zeros(612,924,count);
for w=1:1:count;
polygons(:,:,w)=poly2mask(x(:,w),y(:,w),sf(1),sf(2));
end
Try the above and see what happens!

More Answers (1)

Image Analyst
Image Analyst on 25 Aug 2014
polygons is a 3D array, not a 1D array so you can't stick a whole 2D plane/slice into a single element. Try this
polygons(:,:,w) = poly2mask(...............

Community Treasure Hunt

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

Start Hunting!