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

test dataset #1

Open
chengwei0427 opened this issue Sep 20, 2024 · 5 comments
Open

test dataset #1

chengwei0427 opened this issue Sep 20, 2024 · 5 comments

Comments

@chengwei0427
Copy link

Hi, @HViktorTsoi

Great work! Are there any publicly available datasets for SLAM testing?

@HViktorTsoi
Copy link
Owner

Yes!We are uploading the datasets in the next few days

@chengwei0427
Copy link
Author

Thanks for your work, and looking forward to the dataset being open-sourced.

@chengwei0427
Copy link
Author

Hi, @HViktorTsoi @yuzehh
I downloaded the data you shared in your alpha_lidar repository. However, since the LiDAR keeps rotating from the moment the bag is opened, I have tested FastLIO2, Point-LIO, and IG-LIO, but none of them are running correctly. Could you please advise on how to make this data work? Is dynamic initialization necessary to get it running?

@HViktorTsoi
Copy link
Owner

Hi, the datasets may be challenging for other LIOs to initialize due to rapid rotation from the begining. αLiDAR has a non-static initialization strategy when starting state estimation. Please test with our uploaded code and see the initialization part.

Also please check if the initial LiDAR-IMU extrinsics are correct.

@satyajitghana
Copy link

@chengwei0427 i think you'll also need to fuse encoder data as well to state estimation in other slam algorithms

// fuse encoder angles with odometry, transform odomtry to a fixed frame (w.r.t carrier)
if (encoder_fusion_en){
nav_msgs::Odometry odometry_encoder_body =
uncoupled_encoder_fusion(lidar_end_time_prev, state_point_prev);
// XXX: use previous frame to avoid the high probability of odometry fall outside of encoder queue
// TODO: perform encoder fusion in seperated thread with fixed frequency
state_point_prev = kf.get_x();
lidar_end_time_prev = lidar_end_time;
if (!(odometry_encoder_body.child_frame_id == "-1" || odometry_encoder_body.child_frame_id == "-2"))
{
pubOdomEncoderBody.publish(odometry_encoder_body);
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants