Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bbox V2 as discussed in #1142 #1177

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions kornia/geometry/__init__.py
@@ -1,4 +1,16 @@
from kornia.geometry.bbox import *
from kornia.geometry.bbox_v2 import bbox3d_to_kornia_bbox3d as bbox3d_to_kornia_bbox3d_v2
from kornia.geometry.bbox_v2 import bbox3d_to_mask3d as bbox3d_to_mask3d_v2
from kornia.geometry.bbox_v2 import bbox_to_kornia_bbox as bbox_to_kornia_bbox_v2
from kornia.geometry.bbox_v2 import bbox_to_mask as bbox_to_mask_v2
from kornia.geometry.bbox_v2 import infer_bbox3d_shape as infer_bbox3d_shape_v2
from kornia.geometry.bbox_v2 import infer_bbox_shape as infer_bbox_shape_v2
from kornia.geometry.bbox_v2 import kornia_bbox3d_to_bbox3d as kornia_bbox3d_to_bbox3d_v2
from kornia.geometry.bbox_v2 import kornia_bbox_to_bbox as kornia_bbox_to_bbox_v2
from kornia.geometry.bbox_v2 import transform_bbox as transform_bbox_v2
from kornia.geometry.bbox_v2 import transform_bbox3d as transform_bbox3d_v2
from kornia.geometry.bbox_v2 import validate_bbox as validate_bbox_v2
from kornia.geometry.bbox_v2 import validate_bbox3d as validate_bbox3d_v2
from kornia.geometry.calibration import *
from kornia.geometry.camera import *
from kornia.geometry.conversions import *
Expand Down