Files
2024-08-27 16:10:45 +08:00

17 lines
239 B
C++

#pragma once
#include "ByteTrack/Rect.h"
namespace byte_track
{
struct Object
{
Rect<float> rect;
int label;
float prob;
Object(const Rect<float> &_rect,
const int &_label,
const float &_prob);
};
}