8#include <RobotsIO/Utils/DatasetDetection.h>
11using namespace RobotsIO::Utils;
14DatasetDetection::DatasetDetection(
const std::string& file_path) :
19DatasetDetection::~DatasetDetection()
23bool DatasetDetection::freeze(
const bool blocking)
25 if (!DatasetDataStream::freeze())
28 VectorXd bounding_box_data = data();
30 detection_ = cv::Rect(bounding_box_data(0), bounding_box_data(1), bounding_box_data(2), bounding_box_data(3));
36cv::Rect DatasetDetection::detection()
const