-
Notifications
You must be signed in to change notification settings - Fork 39
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
Visualization #36
Comments
|
Is there any code for that, please?
And I modified main in if __name__ == '__main__':
parser = argparse.ArgumentParser(description="LIDAR_TOP_VIRTUAL")
parser.add_argument('--path', help='path to visualization file', type=str)
args = parser.parse_args()
data = np.load(args.path, allow_pickle=True).item()
virtual_points = data['virtual_points']
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(virtual_points[:, :3])
o3d.visualization.draw_geometries([pcd]) However, it hangs and the result is not displayed. And how can i use detections and scores to plot boxes? any help? |
thanks for great work. Ihave some questions:
1- How can I visualize real points and virtual points in BEV (Bird's Eye View) both with and without an image, similar to Figure 1 and Figure 3c and d? Could you please explain how du the figures visualized?
2- Could you please explain how Figure 4 was visualized?
3-and one more question please, in the paper:
What hyperparameters did you use to get this result (43.3 instance segmentation mAP)? How much is the learning rate? How many iterations? How many images per batch? how many epochs?
The text was updated successfully, but these errors were encountered: