CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hukaixuan19970627

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: hukaixuan19970627/yolov5_obb
Path: blob/master/DOTA_devkit/poly_nms_gpu/poly_nms.hpp
Views: 475
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