How to iterate through rows of a table, such that after each iteration some computation is done and then the below row is reached?
25 次查看(过去 30 天)
显示 更早的评论
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 个评论
Guillaume
2020-1-10
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
2020-2-4
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.
回答(1 个)
Andrew Janke
2020-1-31
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 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!