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/polyiou.h
Views: 475
1
//
2
// Created by dingjian on 18-2-3.
3
//
4
5
#ifndef POLYIOU_POLYIOU_H
6
#define POLYIOU_POLYIOU_H
7
8
#include <vector>
9
double iou_poly(std::vector<double> p, std::vector<double> q);
10
#endif //POLYIOU_POLYIOU_H
11
12