mirror of
https://github.com/sipeed/MaixCDK.git
synced 2026-09-11 22:29:39 -05:00
17 lines
239 B
C++
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);
|
|
};
|
|
} |