1// 2// Created by dingjian on 18-5-24. 3// 4 5#ifndef DOTA_DEVKIT_POLY_NMS_HPP 6#define DOTA_DEVKIT_POLY_NMS_HPP 7 8 9void _poly_nms(int* keep_out, int* num_out, const float* polys_host, int polys_num, 10 int polys_dim, float nms_overlap_thresh, int device_id); 11 12#endif //DOTA_DEVKIT_POLY_NMS_HPP 13 14