update readme

This commit is contained in:
HViktorTsoi
2021-08-09 17:25:40 +08:00
parent b423c27e3f
commit a983c266b5
2 changed files with 8 additions and 9 deletions

View File

@@ -118,4 +118,5 @@ Thanks for the authors of [FAST-LIO](https://github.com/hku-mars/FAST_LIO) and [
## TODO ## TODO
1. Go over the timestamp issue of the published odometry and tf; 1. Go over the timestamp issue of the published odometry and tf;
2. Using integrated points for global localization; 2. Using integrated points for global localization;
3. Updating... 3. Fuse global localization with the state estimation of FAST-LIO, and smooth the localization trajectory;
4. Updating...

View File

@@ -222,18 +222,16 @@ if __name__ == '__main__':
# Global localization frequency (HZ) # Global localization frequency (HZ)
FREQ_LOCALIZATION = 0.5 FREQ_LOCALIZATION = 0.5
# tf and localization publishing frequency (HZ) # The threshold of global localization,
FREQ_PUB_LOCALIZATION = 50 # only those scan2map-matching with lower fitness than LOCALIZATION_TH will be taken
# 全局定位的fitness预支
LOCALIZATION_TH = 0.2 LOCALIZATION_TH = 0.2
# FOV内的最远距离 # FOV(rad), modify this according to your LiDAR type
FOV_FAR = 300
# FOV范围(rad)
FOV = 1.6 FOV = 1.6
# The farthest distance(meters) within FOV
FOV_FAR = 300
rospy.init_node('fast_lio_localization') rospy.init_node('fast_lio_localization')
rospy.loginfo('Localization Node Inited...') rospy.loginfo('Localization Node Inited...')