how to count all vehicles in a video using matlab

2 ビュー (過去 30 日間)
Ameni chetouane
Ameni chetouane 2019 年 7 月 8 日
コメント済み: Dua Mughal 2021 年 2 月 10 日
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.
  1 件のコメント
Dua Mughal
Dua Mughal 2021 年 2 月 10 日
Can U plz share ur code?

サインインしてコメントする。

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 7 月 8 日
編集済み: KALYAN ACHARJYA 2019 年 7 月 8 日
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?
  1 件のコメント
Ameni chetouane
Ameni chetouane 2019 年 7 月 8 日
thank you for your reply.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by