struct ov::op::util::MulticlassNmsBase::Attributes¶
Structure that specifies attributes of the operation.
#include <multiclass_nms_base.hpp>
struct Attributes
{
// fields
SortResultType sort_result_type = SortResultType::NONE;
bool sort_result_across_batch = false;
ov::element::Type output_type = ov::element::i64;
float iou_threshold = 0.0f;
float score_threshold = 0.0f;
int nms_top_k = -1;
int keep_top_k = -1;
int background_class = -1;
float nms_eta = 1.0f;
bool normalized = true;
};