├── CMakeLists.txt ├── LICENSE ├── ReadMe.md ├── images ├── iou.png └── triangles.png ├── iou.pro ├── src ├── iou.cpp └── iou.h └── test ├── main.cpp ├── test.cpp └── test.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/ReadMe.md -------------------------------------------------------------------------------- /images/iou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/images/iou.png -------------------------------------------------------------------------------- /images/triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/images/triangles.png -------------------------------------------------------------------------------- /iou.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/iou.pro -------------------------------------------------------------------------------- /src/iou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/src/iou.cpp -------------------------------------------------------------------------------- /src/iou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/src/iou.h -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheckBoxStudio/IoU/HEAD/test/test.h --------------------------------------------------------------------------------