PassengerStatistics/Main/PedestrianInfo.h

15 lines
268 B
C
Raw Normal View History

2024-03-14 21:41:54 +08:00
#ifndef __PEDESTRIANINFO_H__
#define __PEDESTRIANINFO_H__
#include "Geometry.h"
class PedestrianInfo {
public:
int32_t trackId = -1;
uint64_t frameIndex = 0;
float confidence = 0;
Rectangle head;
Rectangle body;
};
#endif // __PEDESTRIANINFO_H__