We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The BoundingBoxes3D is always the same color and there isn't any information about the Label.
import numpy as np import torch from aloscene import Frame, Labels, BoundingBoxes3D, CameraExtrinsic, CameraIntrinsic, BoundingBoxes2D frame = Frame(np.zeros((3, 500, 500)), normalization="01") frame.append_cam_intrinsic(CameraIntrinsic(focal_length=721.0, plane_size=frame.HW)) frame.append_cam_extrinsic(CameraExtrinsic(torch.eye(4, dtype=torch.float32))) label = Labels([1], names=["name"]) box3d = BoundingBoxes3D([[10, 10, 400, 80, 46, 18, 1]], labels=label) frame.append_boxes3d(box3d) box2d = BoundingBoxes2D([[200, 200, 200, 300]], boxes_format="xcyc", absolute=True, frame_size=(500, 500), labels=label) frame.append_boxes2d(box2d) # No data about labels is displayed next to boxes3d. frame.get_view().render()
The text was updated successfully, but these errors were encountered:
it seems that this isssue is fixed ? @Ardorax
Sorry, something went wrong.
No the bug is still here.
I can get different color and information for 3d boxe on my side with the given code.
Are you sure you are on the alobugsdays branch ? Can you send a screenshot (with the output of git log -7 in your terminal) ?
git log -7
The 3d bow will always be green and blue so the bug is still here. More, you can see the number next to the 3d box but not the 3d box.
Ardorax
Successfully merging a pull request may close this issue.
The BoundingBoxes3D is always the same color and there isn't any information about the Label.
The text was updated successfully, but these errors were encountered: