Tool/software:
Hi,
In the gtrack_unitScore function,
xyVelocity = sqrtf(velx*velx + vely*vely);
if(xyVelocity < 0.1f)
isUnitStatic = true;
else
isUnitStatic = false;
From the function, we can see that if xyVelocity is less than 0.1. We can consider the object as static one, or it is dynamic object. Whther The prerequisite is that the radar is static, is that right? If the radar is moving,the condition should be changed, is that right?
BR,
Rata