#pragma once #include #include "macros.h" namespace vision { namespace ops { // C++ Forward VISION_API at::Tensor nms( const at::Tensor& dets, const at::Tensor& scores, double iou_threshold); } // namespace ops } // namespace vision