nms.h 251 B

123456789101112131415
  1. #pragma once
  2. #include <ATen/ATen.h>
  3. #include "../macros.h"
  4. namespace vision {
  5. namespace ops {
  6. VISION_API at::Tensor nms(
  7. const at::Tensor& dets,
  8. const at::Tensor& scores,
  9. double iou_threshold);
  10. } // namespace ops
  11. } // namespace vision