compute the iou, slice picture etc.
Project description
ai_tool
ai tool
slice picture
from ai_tool.img_slide import yield_sub_img
# yield the sub image from the jpg
for bbox, sub_img in yield_sub_img("test.jpg", 0, 0, 180, 60):
clip = "-".join([str(x) for x in bbox])
print("sub img:{}".format(clip))
cv2.imshow(clip, sub_img)
cv2.waitKey(0)
IoU
compute the iou for tow boxes,
example box1 1, 2, 101, 102. location(1,2) is left-up, location(101,102) is right-down.
from ai_tool.bbox import BBox
bbox1 = BBox([1, 2, 101, 102])
bbox2 = BBox([11, 12, 121, 122])
iou = bbox1 / bbox2
print("iou", iou)
assert iou > 0.5
print('box1 S is', bbox1.S)
print('box1 & box2', bbox1 & bbox2)
print('box1 == box2', bbox1 == bbox2)
result is :
iou 0.5785714285714286
box1 S is 10000
box1 & box2 [11, 12, 101, 102]
box1 == box2 True
multi bbox operation
from ai_tool.bbox import BBoxes, BBox
bb1 = BBoxes(iou_thresh=0.6)
bb2 = BBoxes()
bb1.append([1,2, 101, 102])
bb1.append([1000, 2, 1101, 102])
bb2.append([11, 12, 111, 112])
bb2.append([1, 1002, 101, 1102])
# judge the bbox in bb1
print("[5, 5, 100, 100] in bb1", BBox([5, 5, 100, 100]) in bb1)
print("[100, 5, 200, 100] in bb1", BBox([100, 5, 200, 100]) in bb1)
# bb1 & bb2
print("bb1 & bb2", bb1 & bb2)
print("bb1 - bb2", bb1 - bb2)
print("bb2 - bb1", bb2 - bb1)
result is
[5, 5, 100, 100] in bb1 True
[100, 5, 200, 100] in bb1 False
bb1 & bb2 [[1, 2, 101, 102]]
bb1 - bb2 [[1000, 2, 1101, 102]]
bb2 - bb1 [[1, 1002, 101, 1102]]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ai_tool-1.2.tar.gz
(6.3 kB
view details)
Built Distribution
ai_tool-1.2-py3-none-any.whl
(8.8 kB
view details)
File details
Details for the file ai_tool-1.2.tar.gz
.
File metadata
- Download URL: ai_tool-1.2.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5db56eebfd11cb0529c579a2ba37a4dd461c08948bdcd546aa3f20beeb5b6523 |
|
MD5 | 4b5f5967e1f53891c3380be0ffe9391a |
|
BLAKE2b-256 | 9c70d969966b446e6f7732b48d5992564c619b7467fb25a11f046ac48c18ed10 |
File details
Details for the file ai_tool-1.2-py3-none-any.whl
.
File metadata
- Download URL: ai_tool-1.2-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 069b11df6a21c2155724621276b5cfed213b764019579f264948ddec974ccbd5 |
|
MD5 | 8b5a75e2d0a4a0fd94dafc0cce4f8e43 |
|
BLAKE2b-256 | c28837366b3597a2e5fd0df8a49796a2d9978f3eec4d2399f5febc108e71c4e1 |