i need urgent help to understant
2 views (last 30 days)
Show older comments
in code of tracking cars
in the last step in th code
stats = regionprops(noSmallStructures, {'Centroid','Area'});
if ~isempty([stats.Area])
areaArray = [stats.Area];
[junk,idx] = max(areaArray);
c = stats(idx).Centroid;
c = floor(fliplr(c));
width = 2;
row = c(1)-width:c(1)+width;
col = c(2)-width:c(2)+width;
taggedCars(row,col,1,k) = 255;
taggedCars(row,col,2,k) = 0;
taggedCars(row,col,3,k) = 0;
end
end
Step 5
i want to know why he assume that width = 2 and what mean by " width = 2;
row = c(1)-width:c(1)+width;
col = c(2)-width:c(2)+width;"
i will be thankful for helping me
2 Comments
Alexandra Harkai
on 17 Feb 2017
To help people willing to help your problem, format the code using the '{} Code' button to make it readable.
Answers (1)
Guillaume
on 17 Feb 2017
"i want to know why he assume that width = 2 and what mean by " width = 2;"
How should we know? We didn't write the code. Ask whoever wrote the code why they chose that value.
Note however that the name is misleading. The code actually tags the centroid with a square whose side is 2*width+1, not width.
0 Comments
See Also
Categories
Find more on Tracking and Motion Estimation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!