sglang_v0.5.2/vision_0.23.0/torchvision/csrc/ops/nms.h

16 lines
251 B
C++

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