PassengerStatistics/Main/PedestrianInfo.h
2024-03-14 21:41:54 +08:00

15 lines
268 B
C++

#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__