bbox
bbox copied to clipboard
Python library for 2D/3D bounding boxes
The following code: ``` from bbox import BBox3D import pyquaternion a = BBox3D(x=0, y=0, z=0, q=pyquaternion.Quaternion(axis=[1, 0, 0], angle=3.14159265)) b = BBox3D(x=1, y=0, z=0, q=pyquaternion.Quaternion(axis=[1, 0, 0], angle=3.14159265)) bbox.metrics.iou_3d(a,b) ```...
NIce library. It'd be convenient if it contained a point-inclusion test.
Is it wrong in this code for jaccard_index_3d? inter_area = polygon_area(intersection_points) zmax = np.minimum(a.cz, b.cz) //this is center zmin = np.maximum(a.cz - a.h, b.cz - b.h) //what is the point?...
Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.5.0 to 10.0.1. Release notes Sourced from pillow's releases. 10.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/10.0.1.html Changes Updated libwebp to 1.3.2 #7395 [@radarhere] Updated zlib to 1.3 #7344 [@radarhere] 10.0.0 https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html Changes...