C:\ti\mmwave_industrial_toolbox_4_3_2\labs\people_counting\68xx_Sense_and_Direct_HVAC_Control\src\mss\gtrack\src\gtrack_unit_score.c
I can’t understand the point set(not set) unique logic in following code at line145~169.
I translate line 156~158 as following. why when the point is static and the track_unit is not static, we do not clear the point unique property?
if staticIndication and (not self.isTargetStatic):
clearUniqueInd=False
point.isStatic=False
I translate line 164~165 as following. Why when the point is not static and the track_unit is static, we do not clear the point unique property? All other conditions, we set the point not unique?
if not staticIndication and self.isTargetStatic:
clearUniqueInd=False
Why clear point unique depends on the point static? What’s the relations between point unique and point static?
The whole translated code as following, point is the measure point object, self is the current track unit.