Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hukaixuan19970627
GitHub Repository: hukaixuan19970627/yolov5_obb
Path: blob/master/DOTA_devkit/poly_nms_gpu/poly_nms.hpp
1621 views
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
9
void _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