#pragma once #include namespace byte_track { struct Object { Rect rect; int label; float prob; Object(const Rect &_rect, const int &_label, const float &_prob); }; }