MATLAB: How to count all vehicles in matlab

Computer Vision Toolbox

i already have vehicle count in each frame but i need to count all the vehicles in the video ,please this is for final project any help is greatfully appreciated

Best Answer

For each vehicle, you need to use tracking to determine whether the blob is new to that frame, or existed in a prior frame. If it's new, increment your total car count.
Related Question