Program Listing for File DetectionParserProperties.hpp

Return to documentation for file (include/depthai/properties/DetectionParserProperties.hpp)

#pragma once

#include <vector>

#include "depthai/common/DetectionParserOptions.hpp"
#include "depthai/common/TensorInfo.hpp"
#include "depthai/properties/Properties.hpp"

namespace dai {

struct DetectionParserProperties : PropertiesSerializable<Properties, DetectionParserProperties> {
    int numFramesPool = 8;

    std::unordered_map<std::string, TensorInfo> networkInputs;

    DetectionParserOptions parser;

    ~DetectionParserProperties() override;
};

DEPTHAI_SERIALIZE_EXT(DetectionParserProperties, numFramesPool, networkInputs, parser);

}  // namespace dai