jedeschaud / ct_icp

CT-ICP: Continuous-Time LiDAR Odometry
MIT License
756 stars 130 forks source link

Question about initializing lidar motion #23

Closed bigbigpark closed 2 years ago

bigbigpark commented 2 years ago

Hi again

I know the initalization of the lidar motion is one of the important thing in ICP

In your code , here

At the beginning pose of current scan, it uses the end pose of previous scan.
I don't catch up how it inits the end pose of current scan?

I don't understand above code
I would appreciate if you can explain that code, if not can you recommend something to refer ?

Best regards.

pdell-kitware commented 2 years ago

Hi,

So we have different modes, (constant velocity or no initialization), With constant velocity, it uses the previous relative pose to initialize the motion

With no initialization, it simply uses the previous begin time.

bigbigpark commented 2 years ago

Thanks a lot !