Filter löschen
Filter löschen

Three dimensional arrays with poly2mask in each page

1 Ansicht (letzte 30 Tage)
Martha
Martha am 24 Aug. 2014
Kommentiert: Martha am 25 Aug. 2014
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

Akzeptierte Antwort

Geoff Hayes
Geoff Hayes am 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!

Weitere Antworten (1)

Image Analyst
Image Analyst am 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!

Translated by