how to count all vehicles in a video using matlab
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i already have vehicle count in each frame but i need to count the total number of vehicles.
Looking forward for your answers. Thank you.
Réponses (1)
KALYAN ACHARJYA
le 8 Juil 2019
Modifié(e) : KALYAN ACHARJYA
le 8 Juil 2019
If you are finding the vehicle number individually per frame
tot_v=0;
for i=1:no_v_frame
tot_v=tot_v+no_v_frame(i)
end
or
i already have vehicle count in each frame
Just do sum, suppose you have stored the vehicle number in an array, then
vehicle_frame=[2 3 4 5.....]
tot_v=sum(vehicle_frame);
If you looking for different issue, let me know?
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!