xfys commited on
Commit
c66f463
·
1 Parent(s): 935ef82

Delete cython_bbox-0.1.3-py3.9-win-amd64.egg

Browse files
cython_bbox-0.1.3-py3.9-win-amd64.egg/EGG-INFO/PKG-INFO DELETED
@@ -1,37 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cython-bbox
3
- Version: 0.1.3
4
- Summary: Standalone cython_bbox
5
- Home-page: https://github.com/samson-wang/cython_bbox.git
6
- Author: Samson Wang
7
- Author-email: samson.c.wang@gmail.com
8
- License: UNKNOWN
9
- Keywords: cython_bbox
10
- Platform: UNKNOWN
11
- Description-Content-Type: text/markdown
12
-
13
- # cython_bbox
14
-
15
- 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.
16
-
17
- 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/)!
18
-
19
- ## install
20
-
21
- ```
22
- pip install cython_bbox
23
- ```
24
-
25
- ## usage
26
-
27
-
28
- ```
29
- from cython_bbox import bbox_overlaps
30
- overlaps = bbox_overlaps(
31
- np.ascontiguousarray(dt, dtype=np.float32),
32
- np.ascontiguousarray(gt, dtype=np.float32)
33
- )
34
-
35
- ```
36
-
37
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/EGG-INFO/SOURCES.txt DELETED
@@ -1,10 +0,0 @@
1
- MANIFEST.in
2
- README.md
3
- setup.cfg
4
- setup.py
5
- cython_bbox.egg-info/PKG-INFO
6
- cython_bbox.egg-info/SOURCES.txt
7
- cython_bbox.egg-info/dependency_links.txt
8
- cython_bbox.egg-info/top_level.txt
9
- src/cython_bbox.c
10
- src/cython_bbox.pyx
 
 
 
 
 
 
 
 
 
 
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/EGG-INFO/dependency_links.txt DELETED
@@ -1 +0,0 @@
1
-
 
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/EGG-INFO/native_libs.txt DELETED
@@ -1 +0,0 @@
1
- cython_bbox.cp39-win_amd64.pyd
 
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/EGG-INFO/not-zip-safe DELETED
@@ -1 +0,0 @@
1
-
 
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/EGG-INFO/top_level.txt DELETED
@@ -1 +0,0 @@
1
- cython_bbox
 
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/__pycache__/cython_bbox.cpython-39.pyc DELETED
Binary file (605 Bytes)
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/cython_bbox.cp39-win_amd64.pyd DELETED
Binary file (43 kB)
 
cython_bbox-0.1.3-py3.9-win-amd64.egg/cython_bbox.py DELETED
@@ -1,9 +0,0 @@
1
- def __bootstrap__():
2
- global __bootstrap__, __loader__, __file__
3
- import sys, pkg_resources, importlib.util
4
- __file__ = pkg_resources.resource_filename(__name__, 'cython_bbox.cp39-win_amd64.pyd')
5
- __loader__ = None; del __bootstrap__, __loader__
6
- spec = importlib.util.spec_from_file_location(__name__,__file__)
7
- mod = importlib.util.module_from_spec(spec)
8
- spec.loader.exec_module(mod)
9
- __bootstrap__()