class ngraph::op::internal::NmsStaticShapeIE¶
Overview¶
#include <nms_static_shape_ie.hpp>
template <typename BaseNmsOp>
class NmsStaticShapeIE: public BaseNmsOp
{
public:
// typedefs
typedef typename BaseNmsOp::Attributes Attributes;
// structs
struct init_rt_result;
// construction
NmsStaticShapeIE();
NmsStaticShapeIE(
const Output<Node>& boxes,
const Output<Node>& scores,
const Attributes& attrs
);
// methods
void validate_and_infer_types();
std::shared_ptr<Node> clone_with_new_inputs(const OutputVector& new_args) const;
};
Detailed Documentation¶
Construction¶
NmsStaticShapeIE(
const Output<Node>& boxes,
const Output<Node>& scores,
const Attributes& attrs
)
Constructs a NmsStaticShapeIE operation.
Parameters:
boxes |
Node producing the box coordinates |
scores |
Node producing the box scores |
attrs |
Attributes of the operation |