# cython_bbox **Repository Path**: zhangming8/cython_bbox ## Basic Information - **Project Name**: cython_bbox - **Description**: https://github.com/samson-wang/cython_bbox.git - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-04-13 - **Last Updated**: 2024-05-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # cython_bbox cython_bbox is widely used in object detection tasks. To my best knowledge, it was first implemented in [Faster-RCNN](https://github.com/rbgirshick/py-faster-rcnn). Since then, almost all object detection projects use the source code directly. In order to use it in standalone code snippets or small projects, I make it a pypi module. The `cython_bbox.pyx` is totally borrowed from [Faster-RCNN](https://github.com/rbgirshick/py-faster-rcnn). Thanks [RBG](http://www.rossgirshick.info/)! ## install ``` pip install cython_bbox ``` ## usage ``` from cython_bbox import bbox_overlaps overlaps = bbox_overlaps( np.ascontiguousarray(dt, dtype=np.float32), np.ascontiguousarray(gt, dtype=np.float32) ) ```