How to iterate through rows of a table, such that after each iteration some computation is done and then the below row is reached?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have this piece of code
image=("D:\ProjectI\image.tif");
for ite=1:areasize
row= r(ite,:);
xmin=xCent(1,row) - size_of_cropped_img/2;
ymin=yCent(1,row) - size_of_cropped_img/2;
crop= imcrop(image,[xmin ymin size_of_cropped_img size_of_cropped_img]);
nextrow=ite+1;
end
there are 15 rows which needs to be iterated one by one to get the cropped outputs.Until now only the first output has been extracted.
I would be greatly thankful if someone can assist.
5 comentarios
Guillaume
el 10 de En. de 2020
I haven't read the whole comments and understood where the question is at now. I just want to point out that:
areasize=size(allarea);
for ite=1:areasize
%...
is bad coding. areasize is guaranteed to be a vector of at least 2 elements (more if allarea has more than 2 dimensions), so you're passing a vector as the upper bound of a for loop. Chances are you don't know how for behaves when you pass it a vector as bounds for the loop, so if the above works it's just by luck.
The above is equivalent to:
for iter = 1:size(allarea, 1) %iterate over the ROWS of allarea
Walter Roberson
el 4 de Feb. de 2020
I see that you edited your code and removed most of the statements that people were commenting on.
However in your modified code, you are still overwriting all of the variable "crop" each time through the loop.
Respuestas (1)
Andrew Janke
el 31 de En. de 2020
To iterate over the rows of a table, use height() to see how high your index should go:
for iRow = 1:height(r)
% ... do work on r(iRow,:) ...
end
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!