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)
print('merge box1 + box2', bbox1 + bbox2)
print('merge box1 | box2', bbox1 | bbox2)
result is :
iou 0.5785714285714286
box1 S is 10000
box1 & box2 [11, 12, 101, 102]
box1 == box2 True
merge box1 + box2 [1, 2, 121, 122]
merge box1 | box2 [1, 2, 121, 122]
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.3.tar.gz
(6.4 kB
view details)
Built Distribution
ai_tool-1.3-py3-none-any.whl
(8.8 kB
view details)
File details
Details for the file ai_tool-1.3.tar.gz
.
File metadata
- Download URL: ai_tool-1.3.tar.gz
- Upload date:
- Size: 6.4 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 | 9ffaeb9b96543ee3b2db9ec73ce10f5f713a876438d7098a2424164ad42962b7 |
|
MD5 | e93d24865b110d531fb55c4ec7a5816c |
|
BLAKE2b-256 | 1c268948ff916278618a6de5524cdb79a693880f511b25538d338def1e28f96f |
File details
Details for the file ai_tool-1.3-py3-none-any.whl
.
File metadata
- Download URL: ai_tool-1.3-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 | 85ff357f386518c2d4da2f7cf8bf1a08664050e27ba2b28cff39589c06e2236a |
|
MD5 | 26e10848407788989344eebce4a3e314 |
|
BLAKE2b-256 | c825aa57f1098b0518d18d88c072c83f457148da31dc326e75b28978d8ec3c61 |