├── .github └── workflows │ └── arxiv-daily.yml ├── README.md ├── __pycache__ └── config.cpython-38.pyc ├── config.py ├── daily_arxiv.py ├── database ├── logs │ ├── error.log │ └── runtime.log ├── storage │ ├── storage_2021-12-29.md │ ├── storage_2021-12-30.md │ ├── storage_2021-12-31.md │ ├── storage_2022-01-01.md │ ├── storage_2022-01-02.md │ ├── storage_2022-01-03.md │ ├── storage_2022-01-04.md │ ├── storage_2022-01-05.md │ ├── storage_2022-01-06.md │ ├── storage_2022-01-07.md │ ├── storage_2022-01-08.md │ ├── storage_2022-01-09.md │ ├── storage_2022-01-10.md │ ├── storage_2022-01-11.md │ ├── storage_2022-01-12.md │ ├── storage_2022-01-13.md │ ├── storage_2022-01-14.md │ ├── storage_2022-01-15.md │ ├── storage_2022-01-16.md │ ├── storage_2022-01-17.md │ ├── storage_2022-01-18.md │ ├── storage_2022-01-19.md │ ├── storage_2022-01-20.md │ ├── storage_2022-01-21.md │ ├── storage_2022-01-22.md │ ├── storage_2022-01-23.md │ ├── storage_2022-01-24.md │ ├── storage_2022-01-25.md │ ├── storage_2022-01-26.md │ ├── storage_2022-01-27.md │ ├── storage_2022-01-28.md │ ├── storage_2022-01-29.md │ ├── storage_2022-01-30.md │ ├── storage_2022-01-31.md │ ├── storage_2022-02-01.md │ ├── storage_2022-02-02.md │ ├── storage_2022-02-03.md │ ├── storage_2022-02-04.md │ ├── storage_2022-02-05.md │ ├── storage_2022-02-06.md │ ├── storage_2022-02-07.md │ ├── storage_2022-02-08.md │ ├── storage_2022-02-09.md │ ├── storage_2022-02-10.md │ ├── storage_2022-02-11.md │ ├── storage_2022-02-12.md │ ├── storage_2022-02-13.md │ ├── storage_2022-02-14.md │ ├── storage_2022-02-15.md │ ├── storage_2022-02-16.md │ ├── storage_2022-02-17.md │ ├── storage_2022-02-18.md │ ├── storage_2022-02-19.md │ ├── storage_2022-02-20.md │ ├── storage_2022-02-21.md │ ├── storage_2022-02-22.md │ ├── storage_2022-02-23.md │ ├── storage_2022-02-24.md │ ├── storage_2022-02-25.md │ ├── storage_2022-02-26.md │ ├── storage_2022-02-27.md │ ├── storage_2022-02-28.md │ ├── storage_2022-03-01.md │ ├── storage_2022-03-02.md │ ├── storage_2022-03-03.md │ ├── storage_2022-03-04.md │ ├── storage_2022-03-05.md │ ├── storage_2022-03-06.md │ ├── storage_2022-03-07.md │ ├── storage_2022-03-08.md │ ├── storage_2022-03-09.md │ ├── storage_2022-03-10.md │ ├── storage_2022-03-11.md │ ├── storage_2022-03-12.md │ ├── storage_2022-03-13.md │ ├── storage_2022-03-14.md │ ├── storage_2022-03-15.md │ ├── storage_2022-03-16.md │ ├── storage_2022-03-17.md │ ├── storage_2022-03-18.md │ ├── storage_2022-03-19.md │ ├── storage_2022-03-20.md │ ├── storage_2022-03-21.md │ ├── storage_2022-03-22.md │ ├── storage_2022-03-23.md │ ├── storage_2022-03-24.md │ ├── storage_2022-03-25.md │ ├── storage_2022-03-26.md │ ├── storage_2022-03-27.md │ ├── storage_2022-03-28.md │ ├── storage_2022-03-29.md │ ├── storage_2022-03-30.md │ ├── storage_2022-03-31.md │ ├── storage_2022-04-01.md │ ├── storage_2022-04-02.md │ ├── storage_2022-04-03.md │ ├── storage_2022-04-04.md │ ├── storage_2022-04-05.md │ ├── storage_2022-04-06.md │ ├── storage_2022-04-07.md │ ├── storage_2022-04-08.md │ ├── storage_2022-04-09.md │ ├── storage_2022-04-10.md │ ├── storage_2022-04-11.md │ ├── storage_2022-04-12.md │ ├── storage_2022-04-13.md │ ├── storage_2022-04-14.md │ ├── storage_2022-04-15.md │ ├── storage_2022-04-16.md │ ├── storage_2022-04-17.md │ ├── storage_2022-04-18.md │ ├── storage_2022-04-19.md │ ├── storage_2022-04-20.md │ ├── storage_2022-04-21.md │ ├── storage_2022-04-22.md │ ├── storage_2022-04-23.md │ ├── storage_2022-04-24.md │ ├── storage_2022-04-25.md │ ├── storage_2022-04-26.md │ ├── storage_2022-04-27.md │ ├── storage_2022-04-28.md │ ├── storage_2022-04-29.md │ ├── storage_2022-04-30.md │ ├── storage_2022-05-01.md │ ├── storage_2022-05-02.md │ ├── storage_2022-05-03.md │ ├── storage_2022-05-04.md │ ├── storage_2022-05-05.md │ ├── storage_2022-05-06.md │ ├── storage_2022-05-07.md │ ├── storage_2022-05-08.md │ ├── storage_2022-05-09.md │ ├── storage_2022-05-10.md │ ├── storage_2022-05-11.md │ ├── storage_2022-05-12.md │ ├── storage_2022-05-13.md │ ├── storage_2022-05-14.md │ ├── storage_2022-05-15.md │ ├── storage_2022-05-16.md │ ├── storage_2022-05-17.md │ ├── storage_2022-05-18.md │ ├── storage_2022-05-19.md │ ├── storage_2022-05-20.md │ ├── storage_2022-05-21.md │ ├── storage_2022-05-22.md │ ├── storage_2022-05-23.md │ ├── storage_2022-05-24.md │ ├── storage_2022-05-25.md │ ├── storage_2022-05-26.md │ ├── storage_2022-05-27.md │ ├── storage_2022-05-28.md │ ├── storage_2022-05-29.md │ ├── storage_2022-05-30.md │ ├── storage_2022-05-31.md │ ├── storage_2022-06-01.md │ ├── storage_2022-06-02.md │ ├── storage_2022-06-03.md │ ├── storage_2022-06-04.md │ ├── storage_2022-06-05.md │ ├── storage_2022-06-06.md │ ├── storage_2022-06-07.md │ ├── storage_2022-06-08.md │ ├── storage_2022-06-09.md │ ├── storage_2022-06-10.md │ ├── storage_2022-06-11.md │ ├── storage_2022-06-12.md │ ├── storage_2022-06-13.md │ ├── storage_2022-06-14.md │ ├── storage_2022-06-15.md │ ├── storage_2022-06-16.md │ ├── storage_2022-06-17.md │ ├── storage_2022-06-18.md │ ├── storage_2022-06-19.md │ ├── storage_2022-06-20.md │ ├── storage_2022-06-21.md │ ├── storage_2022-06-22.md │ ├── storage_2022-06-23.md │ ├── storage_2022-06-24.md │ ├── storage_2022-06-25.md │ ├── storage_2022-06-26.md │ ├── storage_2022-06-27.md │ ├── storage_2022-06-28.md │ ├── storage_2022-06-29.md │ ├── storage_2022-06-30.md │ ├── storage_2022-07-01.md │ ├── storage_2022-07-02.md │ ├── storage_2022-07-03.md │ ├── storage_2022-07-04.md │ ├── storage_2022-07-05.md │ ├── storage_2022-07-06.md │ ├── storage_2022-07-07.md │ ├── storage_2022-07-08.md │ ├── storage_2022-07-09.md │ ├── storage_2022-07-10.md │ ├── storage_2022-07-11.md │ ├── storage_2022-07-12.md │ ├── storage_2022-07-13.md │ ├── storage_2022-07-14.md │ ├── storage_2022-07-15.md │ ├── storage_2022-07-16.md │ ├── storage_2022-07-17.md │ ├── storage_2022-07-18.md │ ├── storage_2022-07-19.md │ ├── storage_2022-07-20.md │ ├── storage_2022-07-21.md │ ├── storage_2022-07-22.md │ ├── storage_2022-07-23.md │ ├── storage_2022-07-24.md │ ├── storage_2022-07-25.md │ ├── storage_2022-07-26.md │ ├── storage_2022-07-27.md │ ├── storage_2022-07-28.md │ ├── storage_2022-07-29.md │ ├── storage_2022-07-30.md │ ├── storage_2022-07-31.md │ ├── storage_2022-08-01.md │ ├── storage_2022-08-02.md │ ├── storage_2022-08-03.md │ ├── storage_2022-08-04.md │ ├── storage_2022-08-05.md │ ├── storage_2022-08-06.md │ ├── storage_2022-08-07.md │ ├── storage_2022-08-08.md │ ├── storage_2022-08-09.md │ ├── storage_2022-08-10.md │ ├── storage_2022-08-11.md │ ├── storage_2022-08-12.md │ ├── storage_2022-08-13.md │ ├── storage_2022-08-14.md │ ├── storage_2022-08-15.md │ ├── storage_2022-08-16.md │ ├── storage_2022-08-17.md │ ├── storage_2022-08-18.md │ ├── storage_2022-08-19.md │ ├── storage_2022-08-20.md │ ├── storage_2022-08-21.md │ ├── storage_2022-08-22.md │ ├── storage_2022-08-23.md │ ├── storage_2022-08-24.md │ ├── storage_2022-08-25.md │ ├── storage_2022-08-26.md │ ├── storage_2022-08-27.md │ ├── storage_2022-08-28.md │ ├── storage_2022-08-29.md │ ├── storage_2022-08-30.md │ ├── storage_2022-08-31.md │ ├── storage_2022-09-01.md │ ├── storage_2022-09-02.md │ ├── storage_2022-09-03.md │ ├── storage_2022-09-04.md │ ├── storage_2022-09-05.md │ ├── storage_2022-09-06.md │ ├── storage_2022-09-07.md │ ├── storage_2022-09-08.md │ ├── storage_2022-09-09.md │ ├── storage_2022-09-10.md │ ├── storage_2022-09-11.md │ ├── storage_2022-09-12.md │ ├── storage_2022-09-13.md │ ├── storage_2022-09-14.md │ ├── storage_2022-09-15.md │ ├── storage_2022-09-16.md │ ├── storage_2022-09-17.md │ ├── storage_2022-09-18.md │ ├── storage_2022-09-19.md │ ├── storage_2022-09-20.md │ ├── storage_2022-09-21.md │ ├── storage_2022-09-22.md │ ├── storage_2022-09-23.md │ ├── storage_2022-09-24.md │ ├── storage_2022-09-25.md │ ├── storage_2022-09-26.md │ ├── storage_2022-09-27.md │ ├── storage_2022-09-28.md │ ├── storage_2022-09-29.md │ ├── storage_2022-09-30.md │ ├── storage_2022-10-01.md │ ├── storage_2022-10-02.md │ ├── storage_2022-10-03.md │ ├── storage_2022-10-04.md │ ├── storage_2022-10-05.md │ ├── storage_2022-10-06.md │ ├── storage_2022-10-07.md │ ├── storage_2022-10-08.md │ ├── storage_2022-10-09.md │ ├── storage_2022-10-10.md │ ├── storage_2022-10-11.md │ ├── storage_2022-10-12.md │ ├── storage_2022-10-13.md │ ├── storage_2022-10-14.md │ ├── storage_2022-10-15.md │ ├── storage_2022-10-16.md │ ├── storage_2022-10-17.md │ ├── storage_2022-10-18.md │ ├── storage_2022-10-19.md │ ├── storage_2022-10-20.md │ ├── storage_2022-10-21.md │ ├── storage_2022-10-22.md │ ├── storage_2022-10-23.md │ ├── storage_2022-10-24.md │ ├── storage_2022-10-25.md │ ├── storage_2022-10-26.md │ ├── storage_2022-10-27.md │ ├── storage_2022-10-28.md │ ├── storage_2022-10-29.md │ ├── storage_2022-10-30.md │ ├── storage_2022-10-31.md │ ├── storage_2022-11-01.md │ ├── storage_2022-11-02.md │ ├── storage_2022-11-03.md │ ├── storage_2022-11-04.md │ ├── storage_2022-11-05.md │ ├── storage_2022-11-06.md │ ├── storage_2022-11-07.md │ ├── storage_2022-11-08.md │ ├── storage_2022-11-09.md │ ├── storage_2022-11-10.md │ ├── storage_2022-11-11.md │ ├── storage_2022-11-12.md │ ├── storage_2022-11-13.md │ ├── storage_2022-11-14.md │ ├── storage_2022-11-15.md │ ├── storage_2022-11-16.md │ ├── storage_2022-11-17.md │ ├── storage_2022-11-18.md │ ├── storage_2022-11-19.md │ ├── storage_2022-11-20.md │ ├── storage_2022-11-21.md │ ├── storage_2022-11-22.md │ ├── storage_2022-11-23.md │ ├── storage_2022-11-24.md │ ├── storage_2022-11-25.md │ ├── storage_2022-11-26.md │ ├── storage_2022-11-27.md │ ├── storage_2022-11-28.md │ ├── storage_2022-11-29.md │ ├── storage_2022-11-30.md │ ├── storage_2022-12-01.md │ ├── storage_2022-12-02.md │ ├── storage_2022-12-03.md │ ├── storage_2022-12-04.md │ ├── storage_2022-12-05.md │ ├── storage_2022-12-06.md │ ├── storage_2022-12-07.md │ ├── storage_2022-12-08.md │ ├── storage_2022-12-09.md │ ├── storage_2022-12-10.md │ ├── storage_2022-12-11.md │ ├── storage_2022-12-12.md │ ├── storage_2022-12-13.md │ ├── storage_2022-12-14.md │ ├── storage_2022-12-15.md │ ├── storage_2022-12-16.md │ ├── storage_2022-12-17.md │ ├── storage_2022-12-18.md │ ├── storage_2022-12-19.md │ ├── storage_2022-12-20.md │ ├── storage_2022-12-21.md │ ├── storage_2022-12-22.md │ ├── storage_2022-12-23.md │ ├── storage_2022-12-24.md │ ├── storage_2022-12-25.md │ ├── storage_2022-12-26.md │ ├── storage_2022-12-27.md │ ├── storage_2022-12-28.md │ ├── storage_2022-12-29.md │ ├── storage_2022-12-30.md │ ├── storage_2022-12-31.md │ ├── storage_2023-01-01.md │ ├── storage_2023-01-02.md │ ├── storage_2023-01-03.md │ ├── storage_2023-01-04.md │ ├── storage_2023-01-05.md │ ├── storage_2023-01-06.md │ ├── storage_2023-01-07.md │ ├── storage_2023-01-08.md │ ├── storage_2023-01-09.md │ ├── storage_2023-01-10.md │ ├── storage_2023-01-11.md │ ├── storage_2023-01-12.md │ ├── storage_2023-01-13.md │ ├── storage_2023-01-14.md │ ├── storage_2023-01-15.md │ ├── storage_2023-01-16.md │ ├── storage_2023-01-17.md │ ├── storage_2023-01-18.md │ ├── storage_2023-01-19.md │ ├── storage_2023-01-20.md │ ├── storage_2023-01-21.md │ ├── storage_2023-01-22.md │ ├── storage_2023-01-23.md │ ├── storage_2023-01-24.md │ ├── storage_2023-01-25.md │ ├── storage_2023-01-26.md │ ├── storage_2023-01-27.md │ ├── storage_2023-01-28.md │ ├── storage_2023-01-29.md │ ├── storage_2023-01-30.md │ ├── storage_2023-01-31.md │ ├── storage_2023-02-01.md │ ├── storage_2023-02-02.md │ ├── storage_2023-02-03.md │ ├── storage_2023-02-04.md │ ├── storage_2023-02-05.md │ ├── storage_2023-02-06.md │ ├── storage_2023-02-07.md │ ├── storage_2023-02-08.md │ ├── storage_2023-02-09.md │ ├── storage_2023-02-10.md │ ├── storage_2023-02-11.md │ ├── storage_2023-02-12.md │ ├── storage_2023-02-13.md │ ├── storage_2023-02-14.md │ ├── storage_2023-02-15.md │ ├── storage_2023-02-16.md │ ├── storage_2023-02-17.md │ ├── storage_2023-02-18.md │ ├── storage_2023-02-19.md │ ├── storage_2023-02-20.md │ ├── storage_2023-02-21.md │ ├── storage_2023-02-22.md │ ├── storage_2023-02-23.md │ ├── storage_2023-02-24.md │ ├── storage_2023-02-25.md │ ├── storage_2023-02-26.md │ ├── storage_2023-02-27.md │ ├── storage_2023-02-28.md │ ├── storage_2023-03-01.md │ ├── storage_2023-03-02.md │ ├── storage_2023-03-03.md │ ├── storage_2023-03-04.md │ ├── storage_2023-03-05.md │ ├── storage_2023-03-06.md │ ├── storage_2023-03-07.md │ ├── storage_2023-03-08.md │ ├── storage_2023-03-09.md │ ├── storage_2023-03-10.md │ ├── storage_2023-03-11.md │ ├── storage_2023-03-12.md │ ├── storage_2023-03-13.md │ ├── storage_2023-03-14.md │ ├── storage_2023-03-15.md │ ├── storage_2023-03-16.md │ ├── storage_2023-03-17.md │ ├── storage_2023-03-18.md │ ├── storage_2023-03-19.md │ ├── storage_2023-03-20.md │ ├── storage_2023-03-21.md │ ├── storage_2023-03-22.md │ ├── storage_2023-03-23.md │ ├── storage_2023-03-24.md │ ├── storage_2023-03-25.md │ ├── storage_2023-03-26.md │ ├── storage_2023-03-27.md │ ├── storage_2023-03-28.md │ ├── storage_2023-03-29.md │ ├── storage_2023-03-30.md │ ├── storage_2023-03-31.md │ ├── storage_2023-04-01.md │ ├── storage_2023-04-02.md │ ├── storage_2023-04-03.md │ ├── storage_2023-04-04.md │ ├── storage_2023-04-05.md │ ├── storage_2023-04-06.md │ ├── storage_2023-04-07.md │ ├── storage_2023-04-08.md │ ├── storage_2023-04-09.md │ ├── storage_2023-04-10.md │ ├── storage_2023-04-11.md │ ├── storage_2023-04-12.md │ ├── storage_2023-04-13.md │ ├── storage_2023-04-14.md │ ├── storage_2023-04-15.md │ ├── storage_2023-04-16.md │ ├── storage_2023-04-17.md │ ├── storage_2023-04-18.md │ ├── storage_2023-04-19.md │ ├── storage_2023-04-20.md │ ├── storage_2023-04-21.md │ ├── storage_2023-04-22.md │ ├── storage_2023-04-23.md │ ├── storage_2023-04-24.md │ ├── storage_2023-04-25.md │ ├── storage_2023-04-26.md │ ├── storage_2023-04-27.md │ ├── storage_2023-04-28.md │ ├── storage_2023-04-29.md │ ├── storage_2023-04-30.md │ ├── storage_2023-05-01.md │ ├── storage_2023-05-02.md │ ├── storage_2023-05-03.md │ ├── storage_2023-05-04.md │ ├── storage_2023-05-05.md │ ├── storage_2023-05-06.md │ ├── storage_2023-05-07.md │ ├── storage_2023-05-08.md │ ├── storage_2023-05-09.md │ ├── storage_2023-05-10.md │ ├── storage_2023-05-11.md │ ├── storage_2023-05-12.md │ ├── storage_2023-05-13.md │ ├── storage_2023-05-14.md │ ├── storage_2023-05-15.md │ ├── storage_2023-05-16.md │ ├── storage_2023-05-17.md │ ├── storage_2023-05-18.md │ ├── storage_2023-05-19.md │ ├── storage_2023-05-20.md │ ├── storage_2023-05-21.md │ ├── storage_2023-05-22.md │ ├── storage_2023-05-23.md │ ├── storage_2023-05-24.md │ ├── storage_2023-05-25.md │ ├── storage_2023-05-26.md │ ├── storage_2023-05-27.md │ ├── storage_2023-05-28.md │ ├── storage_2023-05-29.md │ ├── storage_2023-05-30.md │ ├── storage_2023-05-31.md │ ├── storage_2023-06-01.md │ ├── storage_2023-06-02.md │ ├── storage_2023-06-03.md │ ├── storage_2023-06-04.md │ ├── storage_2023-06-05.md │ ├── storage_2023-06-06.md │ ├── storage_2023-06-07.md │ ├── storage_2023-06-08.md │ ├── storage_2023-06-09.md │ ├── storage_2023-06-10.md │ ├── storage_2023-06-11.md │ ├── storage_2023-06-12.md │ ├── storage_2023-06-13.md │ ├── storage_2023-06-14.md │ ├── storage_2023-06-15.md │ ├── storage_2023-06-16.md │ ├── storage_2023-06-17.md │ ├── storage_2023-06-18.md │ ├── storage_2023-06-19.md │ ├── storage_2023-06-20.md │ ├── storage_2023-06-21.md │ ├── storage_2023-06-22.md │ ├── storage_2023-06-23.md │ ├── storage_2023-06-24.md │ ├── storage_2023-06-25.md │ ├── storage_2023-06-26.md │ ├── storage_2023-06-27.md │ ├── storage_2023-06-28.md │ ├── storage_2023-06-29.md │ ├── storage_2023-06-30.md │ ├── storage_2023-07-01.md │ ├── storage_2023-07-02.md │ ├── storage_2023-07-03.md │ ├── storage_2023-07-04.md │ ├── storage_2023-07-05.md │ ├── storage_2023-07-06.md │ ├── storage_2023-07-07.md │ ├── storage_2023-07-08.md │ ├── storage_2023-07-09.md │ ├── storage_2023-07-10.md │ ├── storage_2023-07-11.md │ ├── storage_2023-07-12.md │ ├── storage_2023-07-13.md │ ├── storage_2023-07-14.md │ ├── storage_2023-07-15.md │ ├── storage_2023-07-16.md │ ├── storage_2023-07-17.md │ ├── storage_2023-07-18.md │ ├── storage_2023-07-19.md │ ├── storage_2023-07-20.md │ ├── storage_2023-07-21.md │ ├── storage_2023-07-22.md │ ├── storage_2023-07-23.md │ ├── storage_2023-07-24.md │ ├── storage_2023-07-25.md │ ├── storage_2023-07-26.md │ ├── storage_2023-07-27.md │ ├── storage_2023-07-28.md │ ├── storage_2023-07-29.md │ ├── storage_2023-07-30.md │ ├── storage_2023-07-31.md │ ├── storage_2023-08-01.md │ ├── storage_2023-08-02.md │ ├── storage_2023-08-03.md │ ├── storage_2023-08-04.md │ ├── storage_2023-08-05.md │ ├── storage_2023-08-06.md │ ├── storage_2023-08-07.md │ ├── storage_2023-08-08.md │ ├── storage_2023-08-09.md │ ├── storage_2023-08-10.md │ ├── storage_2023-08-11.md │ ├── storage_2023-08-12.md │ ├── storage_2023-08-13.md │ ├── storage_2023-08-14.md │ ├── storage_2023-08-15.md │ ├── storage_2023-08-16.md │ ├── storage_2023-08-17.md │ ├── storage_2023-08-18.md │ ├── storage_2023-08-19.md │ ├── storage_2023-08-20.md │ ├── storage_2023-08-21.md │ ├── storage_2023-08-22.md │ ├── storage_2023-08-23.md │ ├── storage_2023-08-24.md │ ├── storage_2023-08-25.md │ ├── storage_2023-08-26.md │ ├── storage_2023-08-27.md │ ├── storage_2023-08-28.md │ ├── storage_2023-08-29.md │ ├── storage_2023-08-30.md │ ├── storage_2023-08-31.md │ ├── storage_2023-09-01.md │ ├── storage_2023-09-02.md │ ├── storage_2023-09-03.md │ ├── storage_2023-09-04.md │ ├── storage_2023-09-05.md │ ├── storage_2023-09-06.md │ ├── storage_2023-09-07.md │ ├── storage_2023-09-08.md │ ├── storage_2023-09-09.md │ ├── storage_2023-09-10.md │ ├── storage_2023-09-11.md │ ├── storage_2023-09-12.md │ ├── storage_2023-09-13.md │ ├── storage_2023-09-14.md │ ├── storage_2023-09-15.md │ ├── storage_2023-09-16.md │ ├── storage_2023-09-17.md │ ├── storage_2023-09-18.md │ ├── storage_2023-09-19.md │ ├── storage_2023-09-20.md │ ├── storage_2023-09-21.md │ ├── storage_2023-09-22.md │ ├── storage_2023-09-23.md │ ├── storage_2023-09-24.md │ ├── storage_2023-09-25.md │ ├── storage_2023-09-26.md │ ├── storage_2023-09-27.md │ ├── storage_2023-09-28.md │ ├── storage_2023-09-29.md │ ├── storage_2023-09-30.md │ ├── storage_2023-10-01.md │ ├── storage_2023-10-02.md │ ├── storage_2023-10-03.md │ ├── storage_2023-10-04.md │ ├── storage_2023-10-05.md │ ├── storage_2023-10-06.md │ ├── storage_2023-10-07.md │ ├── storage_2023-10-08.md │ ├── storage_2023-10-09.md │ ├── storage_2023-10-10.md │ ├── storage_2023-10-11.md │ ├── storage_2023-10-12.md │ ├── storage_2023-10-13.md │ ├── storage_2023-10-14.md │ ├── storage_2023-10-15.md │ ├── storage_2023-10-16.md │ ├── storage_2023-10-17.md │ ├── storage_2023-10-18.md │ ├── storage_2023-10-19.md │ ├── storage_2023-10-20.md │ ├── storage_2023-10-21.md │ ├── storage_2023-10-22.md │ ├── storage_2023-10-23.md │ ├── storage_2023-10-24.md │ ├── storage_2023-10-25.md │ ├── storage_2023-10-26.md │ ├── storage_2023-10-27.md │ ├── storage_2023-10-28.md │ ├── storage_2023-10-29.md │ ├── storage_2023-10-30.md │ ├── storage_2023-10-31.md │ ├── storage_2023-11-01.md │ ├── storage_2023-11-02.md │ ├── storage_2023-11-03.md │ ├── storage_2023-11-04.md │ ├── storage_2023-11-05.md │ ├── storage_2023-11-06.md │ ├── storage_2023-11-07.md │ ├── storage_2023-11-08.md │ ├── storage_2023-11-09.md │ ├── storage_2023-11-10.md │ ├── storage_2023-11-11.md │ ├── storage_2023-11-12.md │ ├── storage_2023-11-13.md │ ├── storage_2023-11-14.md │ ├── storage_2023-11-15.md │ ├── storage_2023-11-16.md │ ├── storage_2023-11-17.md │ ├── storage_2023-11-18.md │ ├── storage_2023-11-19.md │ ├── storage_2023-11-20.md │ ├── storage_2023-11-21.md │ ├── storage_2023-11-22.md │ ├── storage_2023-11-23.md │ ├── storage_2023-11-24.md │ ├── storage_2023-11-25.md │ ├── storage_2023-11-26.md │ ├── storage_2023-11-27.md │ ├── storage_2023-11-28.md │ ├── storage_2023-11-29.md │ ├── storage_2023-11-30.md │ ├── storage_2023-12-01.md │ ├── storage_2023-12-02.md │ ├── storage_2023-12-03.md │ ├── storage_2023-12-04.md │ ├── storage_2023-12-05.md │ ├── storage_2023-12-06.md │ ├── storage_2023-12-07.md │ ├── storage_2023-12-08.md │ ├── storage_2023-12-09.md │ ├── storage_2023-12-10.md │ ├── storage_2023-12-11.md │ ├── storage_2023-12-12.md │ ├── storage_2023-12-13.md │ ├── storage_2023-12-14.md │ ├── storage_2023-12-15.md │ ├── storage_2023-12-16.md │ ├── storage_2023-12-17.md │ ├── storage_2023-12-18.md │ ├── storage_2023-12-19.md │ ├── storage_2023-12-20.md │ ├── storage_2023-12-21.md │ ├── storage_2023-12-22.md │ ├── storage_2023-12-23.md │ ├── storage_2023-12-24.md │ ├── storage_2023-12-25.md │ ├── storage_2023-12-26.md │ ├── storage_2023-12-27.md │ ├── storage_2023-12-28.md │ ├── storage_2023-12-29.md │ ├── storage_2023-12-30.md │ ├── storage_2023-12-31.md │ ├── storage_2024-01-01.md │ ├── storage_2024-01-02.md │ ├── storage_2024-01-03.md │ ├── storage_2024-01-04.md │ ├── storage_2024-01-05.md │ ├── storage_2024-01-06.md │ ├── storage_2024-01-07.md │ ├── storage_2024-01-08.md │ ├── storage_2024-01-09.md │ ├── storage_2024-01-10.md │ ├── storage_2024-01-11.md │ ├── storage_2024-01-12.md │ ├── storage_2024-01-13.md │ ├── storage_2024-01-14.md │ ├── storage_2024-01-15.md │ ├── storage_2024-01-16.md │ ├── storage_2024-01-17.md │ ├── storage_2024-01-18.md │ ├── storage_2024-01-19.md │ ├── storage_2024-01-20.md │ ├── storage_2024-01-21.md │ ├── storage_2024-01-22.md │ ├── storage_2024-01-23.md │ ├── storage_2024-01-24.md │ ├── storage_2024-01-25.md │ ├── storage_2024-01-26.md │ ├── storage_2024-01-27.md │ ├── storage_2024-01-28.md │ ├── storage_2024-01-29.md │ ├── storage_2024-01-30.md │ ├── storage_2024-01-31.md │ ├── storage_2024-02-01.md │ ├── storage_2024-02-02.md │ ├── storage_2024-02-03.md │ ├── storage_2024-02-04.md │ ├── storage_2024-02-05.md │ ├── storage_2024-02-06.md │ ├── storage_2024-02-07.md │ ├── storage_2024-02-08.md │ ├── storage_2024-02-09.md │ ├── storage_2024-02-10.md │ ├── storage_2024-02-11.md │ ├── storage_2024-02-12.md │ ├── storage_2024-02-13.md │ ├── storage_2024-02-14.md │ ├── storage_2024-02-15.md │ ├── storage_2024-02-16.md │ ├── storage_2024-02-17.md │ ├── storage_2024-02-18.md │ ├── storage_2024-02-19.md │ ├── storage_2024-02-20.md │ ├── storage_2024-02-21.md │ ├── storage_2024-02-22.md │ ├── storage_2024-02-23.md │ ├── storage_2024-02-24.md │ ├── storage_2024-02-25.md │ ├── storage_2024-02-26.md │ ├── storage_2024-02-27.md │ ├── storage_2024-02-28.md │ ├── storage_2024-02-29.md │ ├── storage_2024-03-01.md │ ├── storage_2024-03-02.md │ ├── storage_2024-03-03.md │ ├── storage_2024-03-04.md │ ├── storage_2024-03-05.md │ ├── storage_2024-03-06.md │ ├── storage_2024-03-07.md │ ├── storage_2024-03-08.md │ ├── storage_2024-03-09.md │ ├── storage_2024-03-10.md │ ├── storage_2024-03-11.md │ ├── storage_2024-03-12.md │ ├── storage_2024-03-13.md │ ├── storage_2024-03-14.md │ ├── storage_2024-03-15.md │ ├── storage_2024-03-16.md │ ├── storage_2024-03-17.md │ ├── storage_2024-03-18.md │ ├── storage_2024-03-19.md │ ├── storage_2024-03-20.md │ ├── storage_2024-03-21.md │ ├── storage_2024-03-22.md │ ├── storage_2024-03-23.md │ ├── storage_2024-03-24.md │ ├── storage_2024-03-25.md │ ├── storage_2024-03-26.md │ ├── storage_2024-03-27.md │ ├── storage_2024-03-28.md │ ├── storage_2024-03-29.md │ ├── storage_2024-03-30.md │ ├── storage_2024-03-31.md │ ├── storage_2024-04-01.md │ ├── storage_2024-04-02.md │ ├── storage_2024-04-03.md │ ├── storage_2024-04-04.md │ ├── storage_2024-04-05.md │ ├── storage_2024-04-06.md │ ├── storage_2024-04-07.md │ ├── storage_2024-04-08.md │ ├── storage_2024-04-09.md │ ├── storage_2024-04-10.md │ ├── storage_2024-04-11.md │ ├── storage_2024-04-12.md │ ├── storage_2024-04-13.md │ ├── storage_2024-04-14.md │ ├── storage_2024-04-15.md │ ├── storage_2024-04-16.md │ ├── storage_2024-04-17.md │ ├── storage_2024-04-18.md │ ├── storage_2024-04-19.md │ ├── storage_2024-04-20.md │ ├── storage_2024-04-21.md │ ├── storage_2024-04-22.md │ ├── storage_2024-04-23.md │ ├── storage_2024-04-24.md │ ├── storage_2024-04-25.md │ ├── storage_2024-04-26.md │ ├── storage_2024-04-27.md │ ├── storage_2024-04-28.md │ ├── storage_2024-04-29.md │ ├── storage_2024-04-30.md │ ├── storage_2024-05-01.md │ ├── storage_2024-05-02.md │ ├── storage_2024-05-03.md │ ├── storage_2024-05-04.md │ ├── storage_2024-05-05.md │ ├── storage_2024-05-06.md │ ├── storage_2024-05-07.md │ ├── storage_2024-05-08.md │ ├── storage_2024-05-09.md │ ├── storage_2024-05-10.md │ ├── storage_2024-05-11.md │ ├── storage_2024-05-12.md │ ├── storage_2024-05-13.md │ ├── storage_2024-05-14.md │ ├── storage_2024-05-15.md │ ├── storage_2024-05-16.md │ ├── storage_2024-05-17.md │ ├── storage_2024-05-18.md │ ├── storage_2024-05-19.md │ ├── storage_2024-05-20.md │ ├── storage_2024-05-21.md │ ├── storage_2024-05-22.md │ ├── storage_2024-05-23.md │ ├── storage_2024-05-24.md │ ├── storage_2024-05-25.md │ ├── storage_2024-05-26.md │ ├── storage_2024-05-27.md │ ├── storage_2024-05-28.md │ ├── storage_2024-05-29.md │ ├── storage_2024-05-30.md │ ├── storage_2024-05-31.md │ ├── storage_2024-06-01.md │ ├── storage_2024-06-02.md │ ├── storage_2024-06-03.md │ ├── storage_2024-06-04.md │ ├── storage_2024-06-05.md │ ├── storage_2024-06-06.md │ ├── storage_2024-06-07.md │ ├── storage_2024-06-08.md │ ├── storage_2024-06-09.md │ ├── storage_2024-06-10.md │ ├── storage_2024-06-11.md │ ├── storage_2024-06-12.md │ ├── storage_2024-06-13.md │ ├── storage_2024-06-14.md │ ├── storage_2024-06-15.md │ ├── storage_2024-06-16.md │ ├── storage_2024-06-17.md │ ├── storage_2024-06-18.md │ ├── storage_2024-06-19.md │ ├── storage_2024-06-20.md │ ├── storage_2024-06-21.md │ ├── storage_2024-06-22.md │ ├── storage_2024-06-23.md │ ├── storage_2024-06-24.md │ ├── storage_2024-06-25.md │ ├── storage_2024-06-26.md │ ├── storage_2024-06-27.md │ ├── storage_2024-06-28.md │ ├── storage_2024-06-29.md │ ├── storage_2024-06-30.md │ ├── storage_2024-07-01.md │ ├── storage_2024-07-02.md │ ├── storage_2024-07-03.md │ ├── storage_2024-07-04.md │ ├── storage_2024-07-05.md │ ├── storage_2024-07-06.md │ ├── storage_2024-07-07.md │ ├── storage_2024-07-08.md │ ├── storage_2024-07-09.md │ ├── storage_2024-07-10.md │ ├── storage_2024-07-11.md │ ├── storage_2024-07-12.md │ ├── storage_2024-07-13.md │ ├── storage_2024-07-14.md │ ├── storage_2024-07-15.md │ ├── storage_2024-07-16.md │ ├── storage_2024-07-17.md │ ├── storage_2024-07-18.md │ ├── storage_2024-07-19.md │ ├── storage_2024-07-20.md │ ├── storage_2024-07-21.md │ ├── storage_2024-07-22.md │ ├── storage_2024-07-23.md │ ├── storage_2024-07-24.md │ ├── storage_2024-07-25.md │ ├── storage_2024-07-26.md │ ├── storage_2024-07-27.md │ ├── storage_2024-07-28.md │ ├── storage_2024-07-29.md │ ├── storage_2024-07-30.md │ ├── storage_2024-07-31.md │ ├── storage_2024-08-01.md │ ├── storage_2024-08-02.md │ ├── storage_2024-08-03.md │ ├── storage_2024-08-04.md │ ├── storage_2024-08-05.md │ ├── storage_2024-08-06.md │ ├── storage_2024-08-07.md │ ├── storage_2024-08-08.md │ ├── storage_2024-08-09.md │ ├── storage_2024-08-10.md │ ├── storage_2024-08-11.md │ ├── storage_2024-08-12.md │ ├── storage_2024-08-13.md │ ├── storage_2024-08-14.md │ ├── storage_2024-08-15.md │ ├── storage_2024-08-16.md │ ├── storage_2024-08-17.md │ ├── storage_2024-08-18.md │ ├── storage_2024-08-19.md │ ├── storage_2024-08-20.md │ ├── storage_2024-08-21.md │ ├── storage_2024-08-22.md │ ├── storage_2024-08-23.md │ ├── storage_2024-08-24.md │ ├── storage_2024-08-25.md │ ├── storage_2024-08-26.md │ ├── storage_2024-08-27.md │ ├── storage_2024-08-28.md │ ├── storage_2024-08-29.md │ ├── storage_2024-08-30.md │ ├── storage_2024-08-31.md │ ├── storage_2024-09-01.md │ ├── storage_2024-09-02.md │ ├── storage_2024-09-03.md │ ├── storage_2024-09-04.md │ ├── storage_2024-09-05.md │ ├── storage_2024-09-06.md │ ├── storage_2024-09-07.md │ ├── storage_2024-09-08.md │ ├── storage_2024-09-09.md │ ├── storage_2024-09-10.md │ ├── storage_2024-09-11.md │ ├── storage_2024-09-12.md │ ├── storage_2024-09-13.md │ ├── storage_2024-09-14.md │ ├── storage_2024-09-15.md │ ├── storage_2024-09-16.md │ ├── storage_2024-09-17.md │ ├── storage_2024-09-18.md │ ├── storage_2024-09-19.md │ ├── storage_2024-09-20.md │ ├── storage_2024-09-21.md │ ├── storage_2024-09-22.md │ ├── storage_2024-09-23.md │ ├── storage_2024-09-24.md │ ├── storage_2024-09-25.md │ ├── storage_2024-09-26.md │ ├── storage_2024-09-27.md │ ├── storage_2024-09-28.md │ ├── storage_2024-09-29.md │ ├── storage_2024-09-30.md │ ├── storage_2024-10-01.md │ ├── storage_2024-10-02.md │ ├── storage_2024-10-03.md │ ├── storage_2024-10-04.md │ ├── storage_2024-10-05.md │ ├── storage_2024-10-06.md │ ├── storage_2024-10-07.md │ ├── storage_2024-10-08.md │ ├── storage_2024-10-09.md │ ├── storage_2024-10-10.md │ ├── storage_2024-10-11.md │ ├── storage_2024-10-12.md │ ├── storage_2024-10-13.md │ ├── storage_2024-10-14.md │ ├── storage_2024-10-15.md │ ├── storage_2024-10-16.md │ ├── storage_2024-10-17.md │ ├── storage_2024-10-18.md │ ├── storage_2024-10-19.md │ ├── storage_2024-10-20.md │ ├── storage_2024-10-21.md │ ├── storage_2024-10-22.md │ ├── storage_2024-10-23.md │ ├── storage_2024-10-24.md │ ├── storage_2024-10-25.md │ ├── storage_2024-10-26.md │ ├── storage_2024-10-27.md │ ├── storage_2024-10-28.md │ ├── storage_2024-10-29.md │ ├── storage_2024-10-30.md │ ├── storage_2024-10-31.md │ ├── storage_2024-11-01.md │ ├── storage_2024-11-02.md │ ├── storage_2024-11-03.md │ ├── storage_2024-11-04.md │ ├── storage_2024-11-05.md │ ├── storage_2024-11-06.md │ ├── storage_2024-11-07.md │ ├── storage_2024-11-08.md │ ├── storage_2024-11-09.md │ ├── storage_2024-11-10.md │ ├── storage_2024-11-11.md │ ├── storage_2024-11-12.md │ ├── storage_2024-11-13.md │ ├── storage_2024-11-14.md │ ├── storage_2024-11-15.md │ ├── storage_2024-11-16.md │ ├── storage_2024-11-17.md │ ├── storage_2024-11-18.md │ ├── storage_2024-11-19.md │ ├── storage_2024-11-20.md │ ├── storage_2024-11-21.md │ ├── storage_2024-11-22.md │ ├── storage_2024-11-23.md │ ├── storage_2024-11-24.md │ ├── storage_2024-11-25.md │ ├── storage_2024-11-26.md │ ├── storage_2024-11-27.md │ ├── storage_2024-11-28.md │ ├── storage_2024-11-29.md │ ├── storage_2024-11-30.md │ ├── storage_2024-12-01.md │ ├── storage_2024-12-02.md │ ├── storage_2024-12-03.md │ ├── storage_2024-12-04.md │ ├── storage_2024-12-05.md │ ├── storage_2024-12-06.md │ ├── storage_2024-12-07.md │ ├── storage_2024-12-08.md │ ├── storage_2024-12-09.md │ ├── storage_2024-12-10.md │ ├── storage_2024-12-11.md │ ├── storage_2024-12-12.md │ ├── storage_2024-12-13.md │ ├── storage_2024-12-14.md │ ├── storage_2024-12-15.md │ ├── storage_2024-12-16.md │ ├── storage_2024-12-17.md │ ├── storage_2024-12-18.md │ ├── storage_2024-12-19.md │ ├── storage_2024-12-20.md │ ├── storage_2024-12-21.md │ ├── storage_2024-12-22.md │ ├── storage_2024-12-23.md │ ├── storage_2024-12-24.md │ ├── storage_2024-12-25.md │ ├── storage_2024-12-26.md │ ├── storage_2024-12-27.md │ ├── storage_2024-12-28.md │ ├── storage_2024-12-29.md │ ├── storage_2024-12-30.md │ ├── storage_2024-12-31.md │ ├── storage_2025-01-01.md │ ├── storage_2025-01-02.md │ ├── storage_2025-01-03.md │ ├── storage_2025-01-04.md │ ├── storage_2025-01-05.md │ ├── storage_2025-01-06.md │ ├── storage_2025-01-07.md │ ├── storage_2025-01-08.md │ ├── storage_2025-01-09.md │ ├── storage_2025-01-10.md │ ├── storage_2025-01-11.md │ ├── storage_2025-01-12.md │ ├── storage_2025-01-13.md │ ├── storage_2025-01-14.md │ ├── storage_2025-01-15.md │ ├── storage_2025-01-16.md │ ├── storage_2025-01-17.md │ ├── storage_2025-01-18.md │ ├── storage_2025-01-19.md │ ├── storage_2025-01-20.md │ ├── storage_2025-01-21.md │ ├── storage_2025-01-22.md │ ├── storage_2025-01-23.md │ ├── storage_2025-01-24.md │ ├── storage_2025-01-25.md │ ├── storage_2025-01-26.md │ ├── storage_2025-01-27.md │ ├── storage_2025-01-28.md │ ├── storage_2025-01-29.md │ ├── storage_2025-01-30.md │ ├── storage_2025-01-31.md │ ├── storage_2025-02-01.md │ ├── storage_2025-02-02.md │ ├── storage_2025-02-03.md │ ├── storage_2025-02-04.md │ ├── storage_2025-02-05.md │ ├── storage_2025-02-06.md │ ├── storage_2025-02-07.md │ ├── storage_2025-02-08.md │ ├── storage_2025-02-09.md │ ├── storage_2025-02-10.md │ ├── storage_2025-02-11.md │ ├── storage_2025-02-12.md │ ├── storage_2025-02-13.md │ ├── storage_2025-02-14.md │ ├── storage_2025-02-15.md │ ├── storage_2025-02-16.md │ ├── storage_2025-02-17.md │ ├── storage_2025-02-18.md │ ├── storage_2025-02-19.md │ ├── storage_2025-02-20.md │ ├── storage_2025-02-21.md │ ├── storage_2025-02-22.md │ ├── storage_2025-02-23.md │ ├── storage_2025-02-24.md │ ├── storage_2025-02-25.md │ ├── storage_2025-02-26.md │ ├── storage_2025-02-27.md │ ├── storage_2025-02-28.md │ ├── storage_2025-03-01.md │ ├── storage_2025-03-02.md │ ├── storage_2025-03-03.md │ ├── storage_2025-03-04.md │ ├── storage_2025-03-05.md │ ├── storage_2025-03-06.md │ ├── storage_2025-03-07.md │ ├── storage_2025-03-08.md │ ├── storage_2025-03-09.md │ ├── storage_2025-03-10.md │ ├── storage_2025-03-11.md │ ├── storage_2025-03-12.md │ ├── storage_2025-03-13.md │ ├── storage_2025-03-14.md │ ├── storage_2025-03-15.md │ ├── storage_2025-03-16.md │ ├── storage_2025-03-17.md │ ├── storage_2025-03-18.md │ ├── storage_2025-03-19.md │ ├── storage_2025-03-20.md │ ├── storage_2025-03-21.md │ ├── storage_2025-03-22.md │ ├── storage_2025-03-23.md │ ├── storage_2025-03-24.md │ ├── storage_2025-03-25.md │ ├── storage_2025-03-26.md │ ├── storage_2025-03-27.md │ ├── storage_2025-03-28.md │ ├── storage_2025-03-29.md │ ├── storage_2025-03-30.md │ ├── storage_2025-03-31.md │ ├── storage_2025-04-01.md │ ├── storage_2025-04-02.md │ ├── storage_2025-04-03.md │ ├── storage_2025-04-04.md │ ├── storage_2025-04-05.md │ ├── storage_2025-04-06.md │ ├── storage_2025-04-07.md │ ├── storage_2025-04-08.md │ ├── storage_2025-04-09.md │ ├── storage_2025-04-10.md │ ├── storage_2025-04-11.md │ ├── storage_2025-04-12.md │ ├── storage_2025-04-13.md │ ├── storage_2025-04-14.md │ ├── storage_2025-04-15.md │ ├── storage_2025-04-16.md │ ├── storage_2025-04-17.md │ ├── storage_2025-04-18.md │ ├── storage_2025-04-19.md │ ├── storage_2025-04-20.md │ ├── storage_2025-04-21.md │ ├── storage_2025-04-22.md │ ├── storage_2025-04-23.md │ ├── storage_2025-04-24.md │ ├── storage_2025-04-25.md │ ├── storage_2025-04-26.md │ ├── storage_2025-04-27.md │ ├── storage_2025-04-28.md │ ├── storage_2025-04-29.md │ ├── storage_2025-04-30.md │ ├── storage_2025-05-01.md │ ├── storage_2025-05-02.md │ ├── storage_2025-05-03.md │ ├── storage_2025-05-04.md │ ├── storage_2025-05-05.md │ ├── storage_2025-05-06.md │ ├── storage_2025-05-07.md │ ├── storage_2025-05-08.md │ ├── storage_2025-05-09.md │ ├── storage_2025-05-10.md │ ├── storage_2025-05-11.md │ ├── storage_2025-05-12.md │ ├── storage_2025-05-13.md │ ├── storage_2025-05-14.md │ ├── storage_2025-05-15.md │ ├── storage_2025-05-16.md │ ├── storage_2025-05-17.md │ ├── storage_2025-05-18.md │ ├── storage_2025-05-19.md │ ├── storage_2025-05-20.md │ ├── storage_2025-05-21.md │ ├── storage_2025-05-22.md │ ├── storage_2025-05-23.md │ ├── storage_2025-05-24.md │ ├── storage_2025-05-25.md │ ├── storage_2025-05-26.md │ ├── storage_2025-05-27.md │ ├── storage_2025-05-28.md │ ├── storage_2025-05-29.md │ ├── storage_2025-05-30.md │ ├── storage_2025-05-31.md │ ├── storage_2025-06-01.md │ ├── storage_2025-06-02.md │ ├── storage_2025-06-03.md │ ├── storage_2025-06-04.md │ ├── storage_2025-06-05.md │ └── storage_2025-06-06.md └── topic.yml ├── docs ├── Robotics │ ├── Robotics.md │ ├── SFM.md │ ├── SLAM.md │ ├── VIO.md │ ├── VO.md │ └── Visual Localization.md └── index.md ├── main.py ├── mkdocs.yml ├── overrides └── main.html ├── requirements-mkdocs.txt └── requirements.txt /.github/workflows/arxiv-daily.yml: -------------------------------------------------------------------------------- 1 | name: Run Arxiv Papers Daily 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: "* 0/12 * * *" #'*/60 * * * *' 7 | push: 8 | branches: [main] 9 | 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | env: 14 | TZ: "Asia/Shanghai" 15 | RUN_ENV: "production" # within ['production', 'development'] 16 | POWER: 16 17 | steps: 18 | # ============================================ 19 | # TODO [√] 检查工作分支及 Workflows 运行环境 20 | # ============================================ 21 | - name: Checkout 22 | uses: actions/checkout@v2 23 | # ============================================ 24 | # TODO [√] 创建 Python3.6+ 编译环境 25 | # ============================================ 26 | - name: Set up Python 3.8 27 | uses: actions/setup-python@v2 28 | with: 29 | python-version: 3.8 30 | # ============================================ 31 | # TODO [√] 安装 Project 第三方依赖 32 | # ============================================ 33 | - name: Install dependencies 34 | run: | 35 | python -m pip install --upgrade pip 36 | if [ -f requirements.txt ]; then pip install -r requirements.txt; fi 37 | # ============================================ 38 | # TODO [√] 测试 Scaffold 脚手架指令 39 | # ============================================ 40 | - name: Run daily arxiv 41 | run: | 42 | python main.py run --env=${{ env.RUN_ENV }} --power=${{ env.POWER }} 43 | # ============================================ 44 | # TODO [√] 更新仓库数据 45 | # ============================================ 46 | - name: Setup GIT user 47 | uses: fregante/setup-git-user@v1 48 | 49 | - name: Push done work 50 | run: | 51 | git add --all 52 | git commit -m "Automated deployment @ $(date '+%Y-%m-%d %H:%M:%S') ${{ env.TZ }}" 53 | git push --force origin main 54 | # ============================================ 55 | # TODO [√] 更新 mkdocs 56 | # ============================================ 57 | - name: Deploy docs 58 | uses: mhausenblas/mkdocs-deploy-gh-pages@nomaterial 59 | env: 60 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 61 | REQUIREMENTS: requirements-mkdocs.txt 62 | -------------------------------------------------------------------------------- /__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiningwei/arxiv-daily/c7c1361c2520735dc3509d60022bf19a3c14bcbf/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | import os 2 | from os.path import dirname, join, abspath 3 | from sys import platform 4 | 5 | import pytz 6 | from loguru import logger 7 | 8 | 9 | # 定位项目根目录 10 | SERVER_DIR_PROJECT = dirname(__file__) if "win" in platform else abspath(".") 11 | 12 | SERVER_PATH_README = join(SERVER_DIR_PROJECT, "README.md") 13 | 14 | SERVER_PATH_DOCS = join(SERVER_DIR_PROJECT, "docs") 15 | 16 | os.makedirs(SERVER_PATH_DOCS, exist_ok=True) 17 | 18 | # 文件数据库 目录根 19 | SERVER_DIR_DATABASE = join(SERVER_DIR_PROJECT, "database") 20 | 21 | SERVER_DIR_STORAGE = join(SERVER_DIR_DATABASE, "storage") 22 | 23 | SERVER_PATH_STORAGE_MD = join(SERVER_DIR_STORAGE, "storage_{}.md") 24 | 25 | SERVER_PATH_TOPIC = join(SERVER_DIR_DATABASE, "topic.yml") 26 | 27 | # 服务器日志文件路径 28 | SERVER_DIR_DATABASE_LOG = join(SERVER_DIR_DATABASE, "logs") 29 | logger.add( 30 | join(SERVER_DIR_DATABASE_LOG, "runtime.log"), 31 | level="DEBUG", 32 | rotation="1 day", 33 | retention="20 days", 34 | encoding="utf8", 35 | ) 36 | logger.add( 37 | join(SERVER_DIR_DATABASE_LOG, "error.log"), 38 | level="ERROR", 39 | rotation="1 week", 40 | encoding="utf8", 41 | ) 42 | 43 | # 时区 44 | TIME_ZONE_CN = pytz.timezone("Asia/Shanghai") 45 | TIME_ZONE_NY = pytz.timezone("America/New_York") 46 | -------------------------------------------------------------------------------- /daily_arxiv.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- encoding: utf-8 -*- 3 | """ 4 | @File : daily_arxiv.py 5 | @Time : 2021-10-29 22:34:09 6 | @Author : Bingjie Yan 7 | @Email : bj.yan.pa@qq.com 8 | @License : Apache License 2.0 9 | """ 10 | 11 | 12 | import datetime 13 | import requests 14 | import json 15 | import arxiv 16 | import os 17 | import shutil 18 | import yaml 19 | import time 20 | import random 21 | try: 22 | from yaml import CLoader as Loader, CDumper as Dumper 23 | except ImportError: 24 | from yaml import Loader, Dumper 25 | 26 | base_url = "https://arxiv.paperswithcode.com/api/v0/papers/" 27 | 28 | 29 | def get_authors(authors, first_author=False): 30 | output = str() 31 | if first_author == False: 32 | output = ", ".join(str(author) for author in authors) 33 | else: 34 | output = authors[0] 35 | return output 36 | 37 | 38 | def sort_papers(papers): 39 | output = dict() 40 | keys = list(papers.keys()) 41 | keys.sort(reverse=True) 42 | for key in keys: 43 | output[key] = papers[key] 44 | return output 45 | 46 | 47 | def get_yaml_data(yaml_file: str): 48 | fs = open(yaml_file) 49 | data = yaml.load(fs, Loader=Loader) 50 | # print(data) 51 | return data 52 | 53 | 54 | def get_daily_papers(topic: str, query: str = "slam", max_results=2): 55 | # output 56 | content = dict() 57 | 58 | # content 59 | output = dict() 60 | 61 | search_engine = arxiv.Search( 62 | query=query, 63 | max_results=max_results, 64 | sort_by=arxiv.SortCriterion.SubmittedDate 65 | ) 66 | 67 | cnt = 0 68 | 69 | for result in search_engine.results(): 70 | 71 | paper_id = result.get_short_id() 72 | paper_title = result.title 73 | paper_url = result.entry_id 74 | 75 | code_url = base_url + paper_id 76 | paper_abstract = result.summary.replace("\n", " ") 77 | paper_authors = get_authors(result.authors) 78 | paper_first_author = get_authors(result.authors, first_author=True) 79 | primary_category = result.primary_category 80 | 81 | publish_time = result.published.date() 82 | 83 | print("Time = ", publish_time, 84 | " title = ", paper_title, 85 | " author = ", paper_first_author) 86 | 87 | # eg: 2108.09112v1 -> 2108.09112 88 | ver_pos = paper_id.find('v') 89 | if ver_pos == -1: 90 | paper_key = paper_id 91 | else: 92 | paper_key = paper_id[0:ver_pos] 93 | 94 | try: 95 | r = requests.get(code_url).json() 96 | # source code link 97 | if "official" in r and r["official"]: 98 | cnt += 1 99 | repo_url = r["official"]["url"] 100 | content[ 101 | paper_key] = f"|**{publish_time}**|**{paper_title}**|{paper_first_author} et.al.|[{paper_id}]({paper_url})|**[link]({repo_url})**|\n" 102 | else: 103 | content[ 104 | paper_key] = f"|**{publish_time}**|**{paper_title}**|{paper_first_author} et.al.|[{paper_id}]({paper_url})|null|\n" 105 | 106 | except Exception as e: 107 | print(f"exception: {e} with id: {paper_key}") 108 | 109 | data = {topic: content} 110 | return data 111 | 112 | 113 | def update_json_file(filename, data): 114 | with open(filename, "r") as f: 115 | content = f.read() 116 | if not content: 117 | m = {} 118 | else: 119 | m = json.loads(content) 120 | 121 | json_data = m.copy() 122 | 123 | # update papers in each keywords 124 | for topic in data.keys(): 125 | if not topic in json_data.keys(): 126 | json_data[topic] = {} 127 | for subtopic in data[topic].keys(): 128 | papers = data[topic][subtopic] 129 | 130 | if subtopic in json_data[topic].keys(): 131 | json_data[topic][subtopic].update(papers) 132 | else: 133 | json_data[topic][subtopic] = papers 134 | 135 | with open(filename, "w") as f: 136 | json.dump(json_data, f) 137 | 138 | 139 | def json_to_md(filename, to_web=False): 140 | """ 141 | @param filename: str 142 | @return None 143 | """ 144 | 145 | DateNow = datetime.date.today() 146 | DateNow = str(DateNow) 147 | DateNow = DateNow.replace('-', '.') 148 | 149 | with open(filename, "r") as f: 150 | content = f.read() 151 | if not content: 152 | data = {} 153 | else: 154 | data = json.loads(content) 155 | 156 | if to_web == False: 157 | md_filename = "README.md" 158 | # clean README.md if daily already exist else create it 159 | with open(md_filename, "w+") as f: 160 | pass 161 | 162 | # write data into README.md 163 | with open(md_filename, "a+") as f: 164 | 165 | f.write("## Updated on " + DateNow + "\n\n") 166 | 167 | f.write( 168 | "> Welcome to contribute! Add your topics and keywords in `topic.yml`\n\n") 169 | 170 | for topic in data.keys(): 171 | f.write("## " + topic + "\n\n") 172 | for subtopic in data[topic].keys(): 173 | day_content = data[topic][subtopic] 174 | if not day_content: 175 | continue 176 | # the head of each part 177 | f.write(f"### {subtopic}\n\n") 178 | 179 | f.write("|Publish Date|Title|Authors|PDF|Code|\n" + 180 | "|---|---|---|---|---|\n") 181 | 182 | # sort papers by date 183 | day_content = sort_papers(day_content) 184 | 185 | for _, v in day_content.items(): 186 | if v is not None: 187 | f.write(v) 188 | 189 | f.write(f"\n") 190 | else: 191 | if os.path.exists('docs'): 192 | shutil.rmtree('docs') 193 | if not os.path.isdir('docs'): 194 | os.mkdir('docs') 195 | 196 | shutil.copyfile('README.md', os.path.join('docs', 'index.md')) 197 | 198 | for topic in data.keys(): 199 | os.makedirs(os.path.join('docs', topic), exist_ok=True) 200 | md_indexname = os.path.join('docs', topic, "index.md") 201 | with open(md_indexname, "w+") as f: 202 | f.write(f"# {topic}\n\n") 203 | 204 | # print(f'web {topic}') 205 | 206 | for subtopic in data[topic].keys(): 207 | md_filename = os.path.join('docs', topic, f"{subtopic}.md") 208 | # print(f'web {subtopic}') 209 | 210 | # clean README.md if daily already exist else create it 211 | with open(md_filename, "w+") as f: 212 | pass 213 | 214 | with open(md_filename, "a+") as f: 215 | day_content = data[topic][subtopic] 216 | if not day_content: 217 | continue 218 | # the head of each part 219 | f.write(f"# {subtopic}\n\n") 220 | f.write("| Publish Date | Title | Authors | PDF | Code |\n") 221 | f.write( 222 | "|:---------|:-----------------------|:---------|:------|:------|\n") 223 | 224 | # sort papers by date 225 | day_content = sort_papers(day_content) 226 | 227 | for _, v in day_content.items(): 228 | if v is not None: 229 | f.write(v) 230 | 231 | f.write(f"\n") 232 | 233 | with open(md_indexname, "a+") as f: 234 | day_content = data[topic][subtopic] 235 | if not day_content: 236 | continue 237 | # the head of each part 238 | f.write(f"## {subtopic}\n\n") 239 | f.write("| Publish Date | Title | Authors | PDF | Code |\n") 240 | f.write( 241 | "|:---------|:-----------------------|:---------|:------|:------|\n") 242 | 243 | # sort papers by date 244 | day_content = sort_papers(day_content) 245 | 246 | for _, v in day_content.items(): 247 | if v is not None: 248 | f.write(v) 249 | 250 | f.write(f"\n") 251 | 252 | print("finished") 253 | 254 | 255 | if __name__ == "__main__": 256 | 257 | data_collector = dict() 258 | 259 | yaml_path = os.path.join(".", "topic.yml") 260 | yaml_data = get_yaml_data(yaml_path) 261 | 262 | print('yaml_path:') 263 | print(yaml_path) 264 | print('yaml_data:') 265 | print(yaml_data) 266 | 267 | keywords = dict(yaml_data) 268 | 269 | for topic in keywords.keys(): 270 | for subtopic, keyword in dict(keywords[topic]).items(): 271 | 272 | # topic = keyword.replace("\"","") 273 | # print("Keyword: " + subtopic) 274 | print(subtopic) 275 | try: 276 | data = get_daily_papers( 277 | subtopic, query=keyword, max_results=10) 278 | except: 279 | print(f'CANNOT get {subtopic} data from arxiv') 280 | data = None 281 | # time.sleep(random.randint(2, 10)) 282 | 283 | if not topic in data_collector.keys(): 284 | data_collector[topic] = {} 285 | 286 | if data: 287 | data_collector[topic].update(data) 288 | 289 | print(data) 290 | # print(data_collector) 291 | 292 | print("\n") 293 | 294 | print(data_collector) 295 | # update README.md file 296 | json_file = "arxiv-daily.json" 297 | # if ~os.path.exists(json_file): 298 | # with open(json_file,'w')as a: 299 | # print("create " + json_file) 300 | 301 | # update json data 302 | update_json_file(json_file, data_collector) 303 | # json data to markdown 304 | json_to_md(json_file) 305 | 306 | # json data to markdown 307 | json_to_md(json_file, to_web=True) 308 | -------------------------------------------------------------------------------- /database/storage/storage_2022-02-22.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2022-02-22 20:45:42 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | -------------------------------------------------------------------------------- /database/storage/storage_2023-03-03.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-03-03 21:08:01 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2023-03-02**|**Robust, High-Precision GNSS Carrier-Phase Positioning with Visual-Inertial Fusion**|Erqun Dong et.al.|[2303.01291v1](http://arxiv.org/abs/2303.01291v1)|null| 12 | |**2023-03-01**|**Renderable Neural Radiance Map for Visual Navigation**|Obin Kwon et.al.|[2303.00304v1](http://arxiv.org/abs/2303.00304v1)|null| 13 | |**2023-02-28**|**IMU-based online multi-lidar calibration without lidar odometry**|Sandipan Das et.al.|[2302.14735v1](http://arxiv.org/abs/2302.14735v1)|null| 14 | |**2023-02-28**|**LIO-PPF: Fast LiDAR-Inertial Odometry via Incremental Plane Pre-Fitting and Skeleton Tracking**|Xingyu Chen et.al.|[2302.14674v2](http://arxiv.org/abs/2302.14674v2)|[link](https://github.com/xingyuuchen/lio-ppf)| 15 | |**2023-02-28**|**Efficient Implicit Neural Reconstruction Using LiDAR**|Dongyu Yan et.al.|[2302.14363v1](http://arxiv.org/abs/2302.14363v1)|null| 16 | |**2023-02-28**|**Design of an Adaptive Lightweight LiDAR to Decouple Robot-Camera Geometry**|Yuyang Chen et.al.|[2302.14334v1](http://arxiv.org/abs/2302.14334v1)|null| 17 | |**2023-02-28**|**LIW-OAM: Lidar-Inertial-Wheel Odometry and Mapping**|Zikang Yuan et.al.|[2302.14298v1](http://arxiv.org/abs/2302.14298v1)|null| 18 | |**2023-02-25**|**Accurate Gaussian Process Distance Fields with applications to Echolocation and Mapping**|Cedric Le Gentil et.al.|[2302.13005v1](http://arxiv.org/abs/2302.13005v1)|null| 19 | |**2023-02-24**|**FLSea: Underwater Visual-Inertial and Stereo-Vision Forward-Looking Datasets**|Yelena Randall et.al.|[2302.12772v1](http://arxiv.org/abs/2302.12772v1)|null| 20 | |**2023-02-23**|**CP+: Camera Poses Augmentation with Large-scale LiDAR Maps**|Jiadi Cui et.al.|[2302.12198v2](http://arxiv.org/abs/2302.12198v2)|null| 21 | |**2023-02-19**|**EdgeVO: An Efficient and Accurate Edge-based Visual Odometry**|Hui Zhao et.al.|[2302.09493v1](http://arxiv.org/abs/2302.09493v1)|null| 22 | |**2023-02-13**|**Mini bot 3D: A ROS based Gazebo Simulation**|B. Udugama et.al.|[2302.06368v1](http://arxiv.org/abs/2302.06368v1)|null| 23 | |**2023-02-08**|**FR-LIO: Fast and Robust Lidar-Inertial Odometry by Tightly-Coupled Iterated Kalman Smoother and Robocentric Voxels**|Xiaoyu Zhao et.al.|[2302.04031v1](http://arxiv.org/abs/2302.04031v1)|null| 24 | |**2023-02-03**|**Deployment of Reliable Visual Inertial Odometry Approaches for Unmanned Aerial Vehicles in Real-world Environment**|Jan Bednář et.al.|[2302.01867v1](http://arxiv.org/abs/2302.01867v1)|null| 25 | |**2023-02-03**|**DAMS-LIO: A Degeneration-Aware and Modular Sensor-Fusion LiDAR-inertial Odometry**|Fuzhang Han et.al.|[2302.01703v2](http://arxiv.org/abs/2302.01703v2)|null| 26 | |**2023-02-01**|**EMV-LIO: An Efficient Multiple Vision aided LiDAR-Inertial Odometry**|Bingqi Shen et.al.|[2302.00216v3](http://arxiv.org/abs/2302.00216v3)|null| 27 | |**2023-01-30**|**Coarse-to-fine Hybrid 3D Mapping System with Co-calibrated Omnidirectional Camera and Non-repetitive LiDAR**|Ziliang Miao et.al.|[2301.12934v3](http://arxiv.org/abs/2301.12934v3)|[link](https://github.com/ZiliangMiao/Hybrid_Mapping_Cocalibration)| 28 | |**2023-01-23**|**Real-Time Simultaneous Localization and Mapping with LiDAR intensity**|Wenqiang Du et.al.|[2301.09257v1](http://arxiv.org/abs/2301.09257v1)|null| 29 | |**2023-01-17**|**COVINS-G: A Generic Back-end for Collaborative Visual-Inertial SLAM**|Manthan Patel et.al.|[2301.07147v1](http://arxiv.org/abs/2301.07147v1)|null| 30 | |**2023-01-13**|**A LiDAR-Inertial-Visual SLAM System with Loop Detection**|Kangcheng Liu et.al.|[2301.05604v1](http://arxiv.org/abs/2301.05604v1)|null| 31 | |**2023-01-12**|**ImMesh: An Immediate LiDAR Localization and Meshing Framework**|Jiarong Lin et.al.|[2301.05206v2](http://arxiv.org/abs/2301.05206v2)|[link](https://github.com/hku-mars/immesh)| 32 | |**2023-01-11**|**TBV Radar SLAM -- trust but verify loop candidates**|Daniel Adolfsson et.al.|[2301.04397v2](http://arxiv.org/abs/2301.04397v2)|null| 33 | |**2023-01-03**|**LunarNav: Crater-based Localization for Long-range Autonomous Lunar Rover Navigation**|Shreyansh Daftry et.al.|[2301.01350v1](http://arxiv.org/abs/2301.01350v1)|null| 34 | |**2023-01-03**|**BS3D: Building-scale 3D Reconstruction from RGB-D Images**|Janne Mustaniemi et.al.|[2301.01057v1](http://arxiv.org/abs/2301.01057v1)|null| 35 | |**2022-12-31**|**4Seasons: Benchmarking Visual SLAM and Long-Term Localization for Autonomous Driving in Challenging Conditions**|Patrick Wenzel et.al.|[2301.01147v1](http://arxiv.org/abs/2301.01147v1)|null| 36 | |**2022-12-26**|**ESVIO: Event-based Stereo Visual Inertial Odometry**|Peiyu Chen et.al.|[2212.13184v1](http://arxiv.org/abs/2212.13184v1)|[link](https://github.com/arclab-hku/event_based_vo-vio-slam)| 37 | |**2022-12-25**|**A Combined Approach Toward Consistent Reconstructions of Indoor Spaces Based on 6D RGB-D Odometry and KinectFusion**|Nadia Figueroa et.al.|[2212.14772v1](http://arxiv.org/abs/2212.14772v1)|null| 38 | |**2022-12-15**|**AirVO: An Illumination-Robust Point-Line Visual Odometry**|Kuan Xu et.al.|[2212.07595v2](http://arxiv.org/abs/2212.07595v2)|[link](https://github.com/xukuanHIT/AirVO)| 39 | |**2022-12-14**|**Autonomous Vehicle Navigation with LIDAR using Path Planning**|Rahul M K et.al.|[2212.07155v1](http://arxiv.org/abs/2212.07155v1)|null| 40 | |**2022-12-12**|**Evaluation of RGB-D SLAM in Large Indoor Environments**|Kirill Muravyev et.al.|[2212.05980v1](http://arxiv.org/abs/2212.05980v1)|null| 41 | 42 | ### Visual Localization 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2023-03-02**|**Teach a Robot to FISH: Versatile Imitation from One Minute of Demonstrations**|Siddhant Haldar et.al.|[2303.01497v1](http://arxiv.org/abs/2303.01497v1)|null| 46 | |**2023-03-02**|**Dataset Creation Pipeline for Camera-Based Heart Rate Estimation**|Mohamed Moustafa et.al.|[2303.01468v1](http://arxiv.org/abs/2303.01468v1)|null| 47 | |**2023-03-02**|**3D generation on ImageNet**|Ivan Skorokhodov et.al.|[2303.01416v1](http://arxiv.org/abs/2303.01416v1)|null| 48 | |**2023-03-02**|**NLP Workbench: Efficient and Extensible Integration of State-of-the-art Text Mining Tools**|Peiran Yao et.al.|[2303.01410v1](http://arxiv.org/abs/2303.01410v1)|null| 49 | |**2023-03-02**|**AdvRain: Adversarial Raindrops to Attack Camera-based Smart Vision Systems**|Amira Guesmi et.al.|[2303.01338v1](http://arxiv.org/abs/2303.01338v1)|null| 50 | |**2023-03-02**|**NeU-NBV: Next Best View Planning Using Uncertainty Estimation in Image-Based Neural Rendering**|Liren Jin et.al.|[2303.01284v1](http://arxiv.org/abs/2303.01284v1)|null| 51 | |**2023-03-02**|**Autonomous Aerial Filming With Distributed Lighting by a Team of Unmanned Aerial Vehicles**|Vít Krátký et.al.|[2303.01177v1](http://arxiv.org/abs/2303.01177v1)|null| 52 | |**2023-03-02**|**Autonomous Reflectance Transformation Imaging by a Team of Unmanned Aerial Vehicles**|Vít Krátký et.al.|[2303.01162v1](http://arxiv.org/abs/2303.01162v1)|null| 53 | |**2023-03-02**|**Marker-based Visual SLAM leveraging Hierarchical Representations**|Ali Tourani et.al.|[2303.01155v1](http://arxiv.org/abs/2303.01155v1)|null| 54 | |**2023-03-02**|**Using simulation to quantify the performance of automotive perception systems**|Zhenyi Liu et.al.|[2303.00983v1](http://arxiv.org/abs/2303.00983v1)|null| 55 | |**2023-03-02**|**Ego-Vehicle Action Recognition based on Semi-Supervised Contrastive Learning**|Chihiro Noguchi et.al.|[2303.00977v1](http://arxiv.org/abs/2303.00977v1)|null| 56 | |**2023-03-02**|**Open Problem: Optimal Best Arm Identification with Fixed Budget**|Chao Qin et.al.|[2303.00950v1](http://arxiv.org/abs/2303.00950v1)|null| 57 | |**2023-03-02**|**Real-time Audio Video Enhancement \\with a Microphone Array and Headphones**|Jacob Kealey et.al.|[2303.00949v1](http://arxiv.org/abs/2303.00949v1)|null| 58 | |**2023-03-02**|**MoSS: Monocular Shape Sensing for Continuum Robots**|Chengnan Shentu et.al.|[2303.00891v1](http://arxiv.org/abs/2303.00891v1)|null| 59 | |**2023-03-02**|**Bayesian Deep Learning for Affordance Segmentation in images**|Lorenzo Mur-Labadia et.al.|[2303.00871v1](http://arxiv.org/abs/2303.00871v1)|null| 60 | |**2023-03-01**|**S-NeRF: Neural Radiance Fields for Street Views**|Ziyang Xie et.al.|[2303.00749v1](http://arxiv.org/abs/2303.00749v1)|null| 61 | |**2023-03-01**|**OSRE: Object-to-Spot Rotation Estimation for Bike Parking Assessment**|Saghir Alfasly et.al.|[2303.00725v1](http://arxiv.org/abs/2303.00725v1)|null| 62 | |**2023-03-01**|**Lunar impact flash results and space surveillance activities at Kryoneri Observatory**|Alexios Liakos et.al.|[2303.00670v1](http://arxiv.org/abs/2303.00670v1)|null| 63 | |**2023-03-01**|**ROCO: A Roundabout Traffic Conflict Dataset**|Depu Meng et.al.|[2303.00563v2](http://arxiv.org/abs/2303.00563v2)|[link](https://github.com/michigan-traffic-lab/roco)| 64 | |**2023-03-01**|**Mitigating Skewed Bidding for Conference Paper Assignment**|Inbal Rozencweig et.al.|[2303.00435v1](http://arxiv.org/abs/2303.00435v1)|null| 65 | |**2023-03-01**|**Motion Estimation for Fisheye Video With an Application to Temporal Resolution Enhancement**|Andrea Eichenseer et.al.|[2303.00433v1](http://arxiv.org/abs/2303.00433v1)|null| 66 | |**2023-03-01**|**Multiperspective Teaching of Unknown Objects via Shared-gaze-based Multimodal Human-Robot Interaction**|Daniel Weber et.al.|[2303.00423v1](http://arxiv.org/abs/2303.00423v1)|null| 67 | |**2023-03-01**|**Validating Monte Carlo simulations for an analysis chain in H.E.S.S**|Fabian Leuschner et.al.|[2303.00412v1](http://arxiv.org/abs/2303.00412v1)|null| 68 | |**2023-03-01**|**AI-Based Multi-Object Relative State Estimation with Self-Calibration Capabilities**|Thomas Jantos et.al.|[2303.00371v1](http://arxiv.org/abs/2303.00371v1)|null| 69 | |**2023-03-01**|**Event Fusion Photometric Stereo Network**|Wonjeong Ryoo et.al.|[2303.00308v1](http://arxiv.org/abs/2303.00308v1)|null| 70 | |**2023-03-01**|**Renderable Neural Radiance Map for Visual Navigation**|Obin Kwon et.al.|[2303.00304v1](http://arxiv.org/abs/2303.00304v1)|null| 71 | |**2023-03-01**|**Capturing the motion of every joint: 3D human pose and shape estimation with independent tokens**|Sen Yang et.al.|[2303.00298v1](http://arxiv.org/abs/2303.00298v1)|[link](https://github.com/yangsenius/int_hmr_model)| 72 | |**2023-03-01**|**UAV Tracking with Lidar as a Camera Sensors in GNSS-Denied Environments**|Ha Sier et.al.|[2303.00277v1](http://arxiv.org/abs/2303.00277v1)|null| 73 | |**2023-03-01**|**Influence of Spattering on In-process Layer Surface Roughness during Laser Powder Bed Fusion**|Haolin Zhang et.al.|[2303.00272v1](http://arxiv.org/abs/2303.00272v1)|null| 74 | |**2023-02-28**|**Onboard dynamic-object detection and tracking for autonomous robot navigation with RGB-D camera**|Zhefan Xu et.al.|[2303.00132v1](http://arxiv.org/abs/2303.00132v1)|null| 75 | 76 | ### VIO 77 | |Publish Date|Title|Authors|PDF|Code| 78 | | :---: | :---: | :---: | :---: | :---: | 79 | |**2023-03-02**|**Robust, High-Precision GNSS Carrier-Phase Positioning with Visual-Inertial Fusion**|Erqun Dong et.al.|[2303.01291v1](http://arxiv.org/abs/2303.01291v1)|null| 80 | |**2023-03-02**|**Ground test results of the micro-vibration interference for the x-ray microcalorimeter onboard XRISM**|Takashi Hasebe et.al.|[2303.01006v1](http://arxiv.org/abs/2303.01006v1)|null| 81 | |**2023-03-02**|**CMB-S4: Forecasting Constraints on $f_\mathrm{NL}$ Through $μ$-distortion Anisotropy**|David Zegeye et.al.|[2303.00916v1](http://arxiv.org/abs/2303.00916v1)|null| 82 | |**2023-03-01**|**New Observations of Solar Wind 1/f Turbulence Spectrum from Parker Solar Probe**|Zesen Huang et.al.|[2303.00843v1](http://arxiv.org/abs/2303.00843v1)|null| 83 | |**2023-03-01**|**Probabilistic Contact State Estimation for Legged Robots using Inertial Information**|Michael Maravgakis et.al.|[2303.00538v1](http://arxiv.org/abs/2303.00538v1)|null| 84 | |**2023-03-01**|**AI-Based Multi-Object Relative State Estimation with Self-Calibration Capabilities**|Thomas Jantos et.al.|[2303.00371v1](http://arxiv.org/abs/2303.00371v1)|null| 85 | |**2023-03-01**|**Renderable Neural Radiance Map for Visual Navigation**|Obin Kwon et.al.|[2303.00304v1](http://arxiv.org/abs/2303.00304v1)|null| 86 | |**2023-03-01**|**Efficient Solution to 3D-LiDAR-based Monte Carlo Localization with Fusion of Measurement Model Optimization via Importance Sampling**|Naoki Akai et.al.|[2303.00216v2](http://arxiv.org/abs/2303.00216v2)|null| 87 | |**2023-02-28**|**Inertial migration of a neutrally buoyant spheroid in plane Poiseuille flow**|Prateek Anand et.al.|[2303.00037v1](http://arxiv.org/abs/2303.00037v1)|null| 88 | |**2023-02-28**|**IMU-based online multi-lidar calibration without lidar odometry**|Sandipan Das et.al.|[2302.14735v1](http://arxiv.org/abs/2302.14735v1)|null| 89 | |**2023-02-28**|**LIO-PPF: Fast LiDAR-Inertial Odometry via Incremental Plane Pre-Fitting and Skeleton Tracking**|Xingyu Chen et.al.|[2302.14674v2](http://arxiv.org/abs/2302.14674v2)|[link](https://github.com/xingyuuchen/lio-ppf)| 90 | |**2023-02-28**|**TrainSim: A Railway Simulation Framework for LiDAR and Camera Dataset Generation**|Gianluca D'Amico et.al.|[2302.14486v1](http://arxiv.org/abs/2302.14486v1)|null| 91 | |**2023-02-28**|**Efficient Implicit Neural Reconstruction Using LiDAR**|Dongyu Yan et.al.|[2302.14363v1](http://arxiv.org/abs/2302.14363v1)|null| 92 | |**2023-02-28**|**Design of an Adaptive Lightweight LiDAR to Decouple Robot-Camera Geometry**|Yuyang Chen et.al.|[2302.14334v1](http://arxiv.org/abs/2302.14334v1)|null| 93 | |**2023-02-28**|**LIW-OAM: Lidar-Inertial-Wheel Odometry and Mapping**|Zikang Yuan et.al.|[2302.14298v1](http://arxiv.org/abs/2302.14298v1)|null| 94 | |**2023-02-28**|**Model-Free and Learning-Free Proprioceptive Humanoid Movement Control**|Boren Jiang et.al.|[2302.14249v1](http://arxiv.org/abs/2302.14249v1)|null| 95 | |**2023-02-27**|**Modeling of Interface Loads for EOD Suit Wearers**|Yuan Gao et.al.|[2302.14028v1](http://arxiv.org/abs/2302.14028v1)|null| 96 | |**2023-02-27**|**Evaluation of Lidar-based 3D SLAM algorithms in SubT environment**|Anton Koval et.al.|[2302.13613v1](http://arxiv.org/abs/2302.13613v1)|null| 97 | |**2023-02-25**|**Accurate Gaussian Process Distance Fields with applications to Echolocation and Mapping**|Cedric Le Gentil et.al.|[2302.13005v1](http://arxiv.org/abs/2302.13005v1)|null| 98 | |**2023-02-25**|**SUPS: A Simulated Underground Parking Scenario Dataset for Autonomous Driving**|Jiawei Hou et.al.|[2302.12966v1](http://arxiv.org/abs/2302.12966v1)|[link](https://github.com/jarvishou829/sups)| 99 | |**2023-02-24**|**FLSea: Underwater Visual-Inertial and Stereo-Vision Forward-Looking Datasets**|Yelena Randall et.al.|[2302.12772v1](http://arxiv.org/abs/2302.12772v1)|null| 100 | |**2023-02-23**|**CP+: Camera Poses Augmentation with Large-scale LiDAR Maps**|Jiadi Cui et.al.|[2302.12198v2](http://arxiv.org/abs/2302.12198v2)|null| 101 | |**2023-02-23**|**A subgradient method with constant step-size for $\ell_1$-composite optimization**|Alessandro Scagliotti et.al.|[2302.12105v1](http://arxiv.org/abs/2302.12105v1)|null| 102 | |**2023-02-21**|**Third sound detectors in accelerated motion**|Cameron R. D. Bunney et.al.|[2302.12023v1](http://arxiv.org/abs/2302.12023v1)|null| 103 | |**2023-02-21**|**Micromagnetic study of inertial spin waves in ferromagnetic nanodots**|Massimiliano d'Aquino et.al.|[2302.10759v1](http://arxiv.org/abs/2302.10759v1)|null| 104 | |**2023-02-20**|**Pressure anisotropy and viscous heating in weakly collisional plasma turbulence**|Jonathan Squire et.al.|[2303.00468v1](http://arxiv.org/abs/2303.00468v1)|null| 105 | |**2023-02-19**|**An efficient numerical method for charged particle transport based on hybrid collision model and machine learning**|Chang Liu et.al.|[2302.09644v1](http://arxiv.org/abs/2302.09644v1)|null| 106 | |**2023-02-19**|**Effect of a guide field on the turbulence like properties of magnetic reconnection**|Subash Adhikari et.al.|[2302.09635v1](http://arxiv.org/abs/2302.09635v1)|null| 107 | |**2023-02-19**|**EdgeVO: An Efficient and Accurate Edge-based Visual Odometry**|Hui Zhao et.al.|[2302.09493v1](http://arxiv.org/abs/2302.09493v1)|null| 108 | |**2023-02-17**|**Decoherence due to Spacetime Curvature**|Raghvendra Singh et.al.|[2302.09038v1](http://arxiv.org/abs/2302.09038v1)|null| 109 | 110 | ### SLAM 111 | |Publish Date|Title|Authors|PDF|Code| 112 | | :---: | :---: | :---: | :---: | :---: | 113 | |**2023-03-02**|**BPT: Binary Point Cloud Transformer for Place Recognition**|Zhixing Hou et.al.|[2303.01166v1](http://arxiv.org/abs/2303.01166v1)|null| 114 | |**2023-03-02**|**Marker-based Visual SLAM leveraging Hierarchical Representations**|Ali Tourani et.al.|[2303.01155v1](http://arxiv.org/abs/2303.01155v1)|null| 115 | |**2023-03-01**|**Prediction of SLAM ATE Using an Ensemble Learning Regression Model and 1-D Global Pooling of Data Characterization**|Islam Ali et.al.|[2303.00616v1](http://arxiv.org/abs/2303.00616v1)|null| 116 | |**2023-03-01**|**Region Prediction for Efficient Robot Localization on Large Maps**|Matteo Scucchia et.al.|[2303.00295v1](http://arxiv.org/abs/2303.00295v1)|null| 117 | |**2023-02-28**|**BEVPlace: Learning LiDAR-based Place Recognition using Bird's Eye View Images**|Lun Luo et.al.|[2302.14325v1](http://arxiv.org/abs/2302.14325v1)|null| 118 | |**2023-02-27**|**Evaluation of Lidar-based 3D SLAM algorithms in SubT environment**|Anton Koval et.al.|[2302.13613v1](http://arxiv.org/abs/2302.13613v1)|null| 119 | |**2023-02-27**|**GeoLCR: Attention-based Geometric Loop Closure and Registration**|Jing Liang et.al.|[2302.13509v4](http://arxiv.org/abs/2302.13509v4)|null| 120 | |**2023-02-26**|**Data-Association-Free Landmark-based SLAM**|Yihao Zhang et.al.|[2302.13264v1](http://arxiv.org/abs/2302.13264v1)|null| 121 | |**2023-02-26**|**Autonomous Search of Semantic Objects in Unknown Environments**|Zhentian Qian et.al.|[2302.13236v1](http://arxiv.org/abs/2302.13236v1)|null| 122 | |**2023-02-25**|**Accurate Gaussian Process Distance Fields with applications to Echolocation and Mapping**|Cedric Le Gentil et.al.|[2302.13005v1](http://arxiv.org/abs/2302.13005v1)|null| 123 | |**2023-02-25**|**SUPS: A Simulated Underground Parking Scenario Dataset for Autonomous Driving**|Jiawei Hou et.al.|[2302.12966v1](http://arxiv.org/abs/2302.12966v1)|[link](https://github.com/jarvishou829/sups)| 124 | |**2023-02-24**|**Decoupling Human and Camera Motion from Videos in the Wild**|Vickie Ye et.al.|[2302.12827v1](http://arxiv.org/abs/2302.12827v1)|null| 125 | |**2023-02-24**|**FLSea: Underwater Visual-Inertial and Stereo-Vision Forward-Looking Datasets**|Yelena Randall et.al.|[2302.12772v1](http://arxiv.org/abs/2302.12772v1)|null| 126 | |**2023-02-23**|**Amos-SLAM: An Anti-Dynamics Two-stage SLAM Approach**|Yaoming Zhuang et.al.|[2302.11747v1](http://arxiv.org/abs/2302.11747v1)|null| 127 | |**2023-02-22**|**Certifiably Correct Range-Aided SLAM**|Alan Papalia et.al.|[2302.11614v1](http://arxiv.org/abs/2302.11614v1)|[link](https://github.com/marineroboticsgroup/cora)| 128 | |**2023-02-21**|**MultiVehicle Simulator (MVSim): lightweight dynamics simulator for multiagents and mobile robotics research**|José-Luis Blanco-Claraco et.al.|[2302.11033v1](http://arxiv.org/abs/2302.11033v1)|null| 129 | |**2023-02-17**|**Probabilistic Qualitative Localization and Mapping**|Roee Mor et.al.|[2302.08735v1](http://arxiv.org/abs/2302.08735v1)|[link](https://github.com/anpl-technion/qsr_slam)| 130 | |**2023-02-16**|**Augmenting Inertial Motion Capture with SLAM Using EKF and SRUKF Data Fusion Algorithms**|Mohammad Mahdi Azarbeik et.al.|[2302.08294v1](http://arxiv.org/abs/2302.08294v1)|null| 131 | |**2023-02-15**|**Continuous-Time Fixed-Lag Smoothing for LiDAR-Inertial-Camera SLAM**|Jiajun Lv et.al.|[2302.07456v1](http://arxiv.org/abs/2302.07456v1)|[link](https://github.com/april-zju/clic)| 132 | |**2023-02-14**|**ConceptFusion: Open-set Multimodal 3D Mapping**|Krishna Murthy Jatavallabhula et.al.|[2302.07241v2](http://arxiv.org/abs/2302.07241v2)|null| 133 | |**2023-02-13**|**Simplified Continuous High Dimensional Belief Space Planning with Adaptive Probabilistic Belief-dependent Constraints**|Andrey Zhitnikov et.al.|[2302.06697v1](http://arxiv.org/abs/2302.06697v1)|null| 134 | |**2023-02-13**|**Mini bot 3D: A ROS based Gazebo Simulation**|B. Udugama et.al.|[2302.06368v1](http://arxiv.org/abs/2302.06368v1)|null| 135 | |**2023-02-13**|**Evolution of SLAM: Toward the Robust-Perception of Autonomy**|B. Udugama et.al.|[2302.06365v1](http://arxiv.org/abs/2302.06365v1)|null| 136 | |**2023-02-08**|**Task Space Control of Robot Manipulators based on Visual SLAM**|Seyed Hamed Hashemi et.al.|[2302.04163v1](http://arxiv.org/abs/2302.04163v1)|null| 137 | |**2023-02-08**|**SLaM: Student-Label Mixing for Semi-Supervised Knowledge Distillation**|Vasilis Kontonis et.al.|[2302.03806v1](http://arxiv.org/abs/2302.03806v1)|null| 138 | |**2023-02-07**|**NICER-SLAM: Neural Implicit Scene Encoding for RGB SLAM**|Zihan Zhu et.al.|[2302.03594v1](http://arxiv.org/abs/2302.03594v1)|null| 139 | |**2023-02-03**|**vMAP: Vectorised Object Mapping for Neural Field SLAM**|Xin Kong et.al.|[2302.01838v1](http://arxiv.org/abs/2302.01838v1)|[link](https://github.com/kxhit/vMAP)| 140 | |**2023-02-01**|**A Projective Geometric View for 6D Pose Estimation in mmWave MIMO Systems**|Shengqiang Shen et.al.|[2302.00227v2](http://arxiv.org/abs/2302.00227v2)|null| 141 | |**2023-01-27**|**HDPV-SLAM: Hybrid Depth-augmented Panoramic Visual SLAM for Mobile Mapping System with Tilted LiDAR and Panoramic Visual Camera**|Mostafa Ahmadi et.al.|[2301.11823v1](http://arxiv.org/abs/2301.11823v1)|null| 142 | |**2023-01-26**|**Distributed Optimization Methods for Multi-Robot Systems: Part I -- A Tutorial**|Ola Shorinwa et.al.|[2301.11313v1](http://arxiv.org/abs/2301.11313v1)|null| 143 | -------------------------------------------------------------------------------- /database/storage/storage_2023-03-04.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-03-04 21:02:16 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2023-03-02**|**Robust, High-Precision GNSS Carrier-Phase Positioning with Visual-Inertial Fusion**|Erqun Dong et.al.|[2303.01291v1](http://arxiv.org/abs/2303.01291v1)|null| 12 | |**2023-03-01**|**Renderable Neural Radiance Map for Visual Navigation**|Obin Kwon et.al.|[2303.00304v1](http://arxiv.org/abs/2303.00304v1)|null| 13 | |**2023-02-28**|**IMU-based online multi-lidar calibration without lidar odometry**|Sandipan Das et.al.|[2302.14735v1](http://arxiv.org/abs/2302.14735v1)|null| 14 | |**2023-02-28**|**LIO-PPF: Fast LiDAR-Inertial Odometry via Incremental Plane Pre-Fitting and Skeleton Tracking**|Xingyu Chen et.al.|[2302.14674v2](http://arxiv.org/abs/2302.14674v2)|[link](https://github.com/xingyuuchen/lio-ppf)| 15 | |**2023-02-28**|**Efficient Implicit Neural Reconstruction Using LiDAR**|Dongyu Yan et.al.|[2302.14363v1](http://arxiv.org/abs/2302.14363v1)|null| 16 | |**2023-02-28**|**Design of an Adaptive Lightweight LiDAR to Decouple Robot-Camera Geometry**|Yuyang Chen et.al.|[2302.14334v1](http://arxiv.org/abs/2302.14334v1)|null| 17 | |**2023-02-28**|**LIW-OAM: Lidar-Inertial-Wheel Odometry and Mapping**|Zikang Yuan et.al.|[2302.14298v1](http://arxiv.org/abs/2302.14298v1)|null| 18 | |**2023-02-25**|**Accurate Gaussian Process Distance Fields with applications to Echolocation and Mapping**|Cedric Le Gentil et.al.|[2302.13005v1](http://arxiv.org/abs/2302.13005v1)|null| 19 | |**2023-02-24**|**FLSea: Underwater Visual-Inertial and Stereo-Vision Forward-Looking Datasets**|Yelena Randall et.al.|[2302.12772v1](http://arxiv.org/abs/2302.12772v1)|null| 20 | |**2023-02-23**|**CP+: Camera Poses Augmentation with Large-scale LiDAR Maps**|Jiadi Cui et.al.|[2302.12198v2](http://arxiv.org/abs/2302.12198v2)|null| 21 | |**2023-02-19**|**EdgeVO: An Efficient and Accurate Edge-based Visual Odometry**|Hui Zhao et.al.|[2302.09493v1](http://arxiv.org/abs/2302.09493v1)|null| 22 | |**2023-02-13**|**Mini bot 3D: A ROS based Gazebo Simulation**|B. Udugama et.al.|[2302.06368v1](http://arxiv.org/abs/2302.06368v1)|null| 23 | |**2023-02-08**|**FR-LIO: Fast and Robust Lidar-Inertial Odometry by Tightly-Coupled Iterated Kalman Smoother and Robocentric Voxels**|Xiaoyu Zhao et.al.|[2302.04031v1](http://arxiv.org/abs/2302.04031v1)|null| 24 | |**2023-02-03**|**Deployment of Reliable Visual Inertial Odometry Approaches for Unmanned Aerial Vehicles in Real-world Environment**|Jan Bednář et.al.|[2302.01867v1](http://arxiv.org/abs/2302.01867v1)|null| 25 | |**2023-02-03**|**DAMS-LIO: A Degeneration-Aware and Modular Sensor-Fusion LiDAR-inertial Odometry**|Fuzhang Han et.al.|[2302.01703v2](http://arxiv.org/abs/2302.01703v2)|null| 26 | |**2023-02-01**|**EMV-LIO: An Efficient Multiple Vision aided LiDAR-Inertial Odometry**|Bingqi Shen et.al.|[2302.00216v3](http://arxiv.org/abs/2302.00216v3)|null| 27 | |**2023-01-30**|**Coarse-to-fine Hybrid 3D Mapping System with Co-calibrated Omnidirectional Camera and Non-repetitive LiDAR**|Ziliang Miao et.al.|[2301.12934v3](http://arxiv.org/abs/2301.12934v3)|[link](https://github.com/ZiliangMiao/Hybrid_Mapping_Cocalibration)| 28 | |**2023-01-23**|**Real-Time Simultaneous Localization and Mapping with LiDAR intensity**|Wenqiang Du et.al.|[2301.09257v1](http://arxiv.org/abs/2301.09257v1)|null| 29 | |**2023-01-17**|**COVINS-G: A Generic Back-end for Collaborative Visual-Inertial SLAM**|Manthan Patel et.al.|[2301.07147v1](http://arxiv.org/abs/2301.07147v1)|null| 30 | |**2023-01-13**|**A LiDAR-Inertial-Visual SLAM System with Loop Detection**|Kangcheng Liu et.al.|[2301.05604v1](http://arxiv.org/abs/2301.05604v1)|null| 31 | |**2023-01-12**|**ImMesh: An Immediate LiDAR Localization and Meshing Framework**|Jiarong Lin et.al.|[2301.05206v2](http://arxiv.org/abs/2301.05206v2)|[link](https://github.com/hku-mars/immesh)| 32 | |**2023-01-11**|**TBV Radar SLAM -- trust but verify loop candidates**|Daniel Adolfsson et.al.|[2301.04397v2](http://arxiv.org/abs/2301.04397v2)|null| 33 | |**2023-01-03**|**LunarNav: Crater-based Localization for Long-range Autonomous Lunar Rover Navigation**|Shreyansh Daftry et.al.|[2301.01350v1](http://arxiv.org/abs/2301.01350v1)|null| 34 | |**2023-01-03**|**BS3D: Building-scale 3D Reconstruction from RGB-D Images**|Janne Mustaniemi et.al.|[2301.01057v1](http://arxiv.org/abs/2301.01057v1)|null| 35 | |**2022-12-31**|**4Seasons: Benchmarking Visual SLAM and Long-Term Localization for Autonomous Driving in Challenging Conditions**|Patrick Wenzel et.al.|[2301.01147v1](http://arxiv.org/abs/2301.01147v1)|null| 36 | |**2022-12-26**|**ESVIO: Event-based Stereo Visual Inertial Odometry**|Peiyu Chen et.al.|[2212.13184v1](http://arxiv.org/abs/2212.13184v1)|[link](https://github.com/arclab-hku/event_based_vo-vio-slam)| 37 | |**2022-12-25**|**A Combined Approach Toward Consistent Reconstructions of Indoor Spaces Based on 6D RGB-D Odometry and KinectFusion**|Nadia Figueroa et.al.|[2212.14772v1](http://arxiv.org/abs/2212.14772v1)|null| 38 | |**2022-12-15**|**AirVO: An Illumination-Robust Point-Line Visual Odometry**|Kuan Xu et.al.|[2212.07595v2](http://arxiv.org/abs/2212.07595v2)|[link](https://github.com/xukuanHIT/AirVO)| 39 | |**2022-12-14**|**Autonomous Vehicle Navigation with LIDAR using Path Planning**|Rahul M K et.al.|[2212.07155v1](http://arxiv.org/abs/2212.07155v1)|null| 40 | |**2022-12-12**|**Evaluation of RGB-D SLAM in Large Indoor Environments**|Kirill Muravyev et.al.|[2212.05980v1](http://arxiv.org/abs/2212.05980v1)|null| 41 | 42 | ### VIO 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2023-03-02**|**Robust, High-Precision GNSS Carrier-Phase Positioning with Visual-Inertial Fusion**|Erqun Dong et.al.|[2303.01291v1](http://arxiv.org/abs/2303.01291v1)|null| 46 | |**2023-03-02**|**Ground test results of the micro-vibration interference for the x-ray microcalorimeter onboard XRISM**|Takashi Hasebe et.al.|[2303.01006v1](http://arxiv.org/abs/2303.01006v1)|null| 47 | |**2023-03-02**|**CMB-S4: Forecasting Constraints on $f_\mathrm{NL}$ Through $μ$-distortion Anisotropy**|David Zegeye et.al.|[2303.00916v1](http://arxiv.org/abs/2303.00916v1)|null| 48 | |**2023-03-01**|**New Observations of Solar Wind 1/f Turbulence Spectrum from Parker Solar Probe**|Zesen Huang et.al.|[2303.00843v1](http://arxiv.org/abs/2303.00843v1)|null| 49 | |**2023-03-01**|**Probabilistic Contact State Estimation for Legged Robots using Inertial Information**|Michael Maravgakis et.al.|[2303.00538v1](http://arxiv.org/abs/2303.00538v1)|null| 50 | |**2023-03-01**|**AI-Based Multi-Object Relative State Estimation with Self-Calibration Capabilities**|Thomas Jantos et.al.|[2303.00371v1](http://arxiv.org/abs/2303.00371v1)|null| 51 | |**2023-03-01**|**Renderable Neural Radiance Map for Visual Navigation**|Obin Kwon et.al.|[2303.00304v1](http://arxiv.org/abs/2303.00304v1)|null| 52 | |**2023-03-01**|**Efficient Solution to 3D-LiDAR-based Monte Carlo Localization with Fusion of Measurement Model Optimization via Importance Sampling**|Naoki Akai et.al.|[2303.00216v2](http://arxiv.org/abs/2303.00216v2)|null| 53 | |**2023-02-28**|**Inertial migration of a neutrally buoyant spheroid in plane Poiseuille flow**|Prateek Anand et.al.|[2303.00037v1](http://arxiv.org/abs/2303.00037v1)|null| 54 | |**2023-02-28**|**IMU-based online multi-lidar calibration without lidar odometry**|Sandipan Das et.al.|[2302.14735v1](http://arxiv.org/abs/2302.14735v1)|null| 55 | |**2023-02-28**|**LIO-PPF: Fast LiDAR-Inertial Odometry via Incremental Plane Pre-Fitting and Skeleton Tracking**|Xingyu Chen et.al.|[2302.14674v2](http://arxiv.org/abs/2302.14674v2)|[link](https://github.com/xingyuuchen/lio-ppf)| 56 | |**2023-02-28**|**TrainSim: A Railway Simulation Framework for LiDAR and Camera Dataset Generation**|Gianluca D'Amico et.al.|[2302.14486v1](http://arxiv.org/abs/2302.14486v1)|null| 57 | |**2023-02-28**|**Efficient Implicit Neural Reconstruction Using LiDAR**|Dongyu Yan et.al.|[2302.14363v1](http://arxiv.org/abs/2302.14363v1)|null| 58 | |**2023-02-28**|**Design of an Adaptive Lightweight LiDAR to Decouple Robot-Camera Geometry**|Yuyang Chen et.al.|[2302.14334v1](http://arxiv.org/abs/2302.14334v1)|null| 59 | |**2023-02-28**|**LIW-OAM: Lidar-Inertial-Wheel Odometry and Mapping**|Zikang Yuan et.al.|[2302.14298v1](http://arxiv.org/abs/2302.14298v1)|null| 60 | |**2023-02-28**|**Model-Free and Learning-Free Proprioceptive Humanoid Movement Control**|Boren Jiang et.al.|[2302.14249v1](http://arxiv.org/abs/2302.14249v1)|null| 61 | |**2023-02-27**|**Modeling of Interface Loads for EOD Suit Wearers**|Yuan Gao et.al.|[2302.14028v1](http://arxiv.org/abs/2302.14028v1)|null| 62 | |**2023-02-27**|**Evaluation of Lidar-based 3D SLAM algorithms in SubT environment**|Anton Koval et.al.|[2302.13613v1](http://arxiv.org/abs/2302.13613v1)|null| 63 | |**2023-02-25**|**Accurate Gaussian Process Distance Fields with applications to Echolocation and Mapping**|Cedric Le Gentil et.al.|[2302.13005v1](http://arxiv.org/abs/2302.13005v1)|null| 64 | |**2023-02-25**|**SUPS: A Simulated Underground Parking Scenario Dataset for Autonomous Driving**|Jiawei Hou et.al.|[2302.12966v1](http://arxiv.org/abs/2302.12966v1)|[link](https://github.com/jarvishou829/sups)| 65 | |**2023-02-24**|**FLSea: Underwater Visual-Inertial and Stereo-Vision Forward-Looking Datasets**|Yelena Randall et.al.|[2302.12772v1](http://arxiv.org/abs/2302.12772v1)|null| 66 | |**2023-02-23**|**CP+: Camera Poses Augmentation with Large-scale LiDAR Maps**|Jiadi Cui et.al.|[2302.12198v2](http://arxiv.org/abs/2302.12198v2)|null| 67 | |**2023-02-23**|**A subgradient method with constant step-size for $\ell_1$-composite optimization**|Alessandro Scagliotti et.al.|[2302.12105v1](http://arxiv.org/abs/2302.12105v1)|null| 68 | |**2023-02-21**|**Third sound detectors in accelerated motion**|Cameron R. D. Bunney et.al.|[2302.12023v1](http://arxiv.org/abs/2302.12023v1)|null| 69 | |**2023-02-21**|**Micromagnetic study of inertial spin waves in ferromagnetic nanodots**|Massimiliano d'Aquino et.al.|[2302.10759v1](http://arxiv.org/abs/2302.10759v1)|null| 70 | |**2023-02-20**|**Pressure anisotropy and viscous heating in weakly collisional plasma turbulence**|Jonathan Squire et.al.|[2303.00468v1](http://arxiv.org/abs/2303.00468v1)|null| 71 | |**2023-02-19**|**An efficient numerical method for charged particle transport based on hybrid collision model and machine learning**|Chang Liu et.al.|[2302.09644v1](http://arxiv.org/abs/2302.09644v1)|null| 72 | |**2023-02-19**|**Effect of a guide field on the turbulence like properties of magnetic reconnection**|Subash Adhikari et.al.|[2302.09635v1](http://arxiv.org/abs/2302.09635v1)|null| 73 | |**2023-02-19**|**EdgeVO: An Efficient and Accurate Edge-based Visual Odometry**|Hui Zhao et.al.|[2302.09493v1](http://arxiv.org/abs/2302.09493v1)|null| 74 | |**2023-02-17**|**Decoherence due to Spacetime Curvature**|Raghvendra Singh et.al.|[2302.09038v1](http://arxiv.org/abs/2302.09038v1)|null| 75 | 76 | ### SLAM 77 | |Publish Date|Title|Authors|PDF|Code| 78 | | :---: | :---: | :---: | :---: | :---: | 79 | |**2023-03-02**|**BPT: Binary Point Cloud Transformer for Place Recognition**|Zhixing Hou et.al.|[2303.01166v1](http://arxiv.org/abs/2303.01166v1)|null| 80 | |**2023-03-02**|**Marker-based Visual SLAM leveraging Hierarchical Representations**|Ali Tourani et.al.|[2303.01155v1](http://arxiv.org/abs/2303.01155v1)|null| 81 | |**2023-03-01**|**Prediction of SLAM ATE Using an Ensemble Learning Regression Model and 1-D Global Pooling of Data Characterization**|Islam Ali et.al.|[2303.00616v1](http://arxiv.org/abs/2303.00616v1)|null| 82 | |**2023-03-01**|**Region Prediction for Efficient Robot Localization on Large Maps**|Matteo Scucchia et.al.|[2303.00295v1](http://arxiv.org/abs/2303.00295v1)|null| 83 | |**2023-02-28**|**BEVPlace: Learning LiDAR-based Place Recognition using Bird's Eye View Images**|Lun Luo et.al.|[2302.14325v1](http://arxiv.org/abs/2302.14325v1)|null| 84 | |**2023-02-27**|**Evaluation of Lidar-based 3D SLAM algorithms in SubT environment**|Anton Koval et.al.|[2302.13613v1](http://arxiv.org/abs/2302.13613v1)|null| 85 | |**2023-02-27**|**GeoLCR: Attention-based Geometric Loop Closure and Registration**|Jing Liang et.al.|[2302.13509v4](http://arxiv.org/abs/2302.13509v4)|null| 86 | |**2023-02-26**|**Data-Association-Free Landmark-based SLAM**|Yihao Zhang et.al.|[2302.13264v1](http://arxiv.org/abs/2302.13264v1)|null| 87 | |**2023-02-26**|**Autonomous Search of Semantic Objects in Unknown Environments**|Zhentian Qian et.al.|[2302.13236v1](http://arxiv.org/abs/2302.13236v1)|null| 88 | |**2023-02-25**|**Accurate Gaussian Process Distance Fields with applications to Echolocation and Mapping**|Cedric Le Gentil et.al.|[2302.13005v1](http://arxiv.org/abs/2302.13005v1)|null| 89 | |**2023-02-25**|**SUPS: A Simulated Underground Parking Scenario Dataset for Autonomous Driving**|Jiawei Hou et.al.|[2302.12966v1](http://arxiv.org/abs/2302.12966v1)|[link](https://github.com/jarvishou829/sups)| 90 | |**2023-02-24**|**Decoupling Human and Camera Motion from Videos in the Wild**|Vickie Ye et.al.|[2302.12827v1](http://arxiv.org/abs/2302.12827v1)|null| 91 | |**2023-02-24**|**FLSea: Underwater Visual-Inertial and Stereo-Vision Forward-Looking Datasets**|Yelena Randall et.al.|[2302.12772v1](http://arxiv.org/abs/2302.12772v1)|null| 92 | |**2023-02-23**|**Amos-SLAM: An Anti-Dynamics Two-stage SLAM Approach**|Yaoming Zhuang et.al.|[2302.11747v1](http://arxiv.org/abs/2302.11747v1)|null| 93 | |**2023-02-22**|**Certifiably Correct Range-Aided SLAM**|Alan Papalia et.al.|[2302.11614v1](http://arxiv.org/abs/2302.11614v1)|[link](https://github.com/marineroboticsgroup/cora)| 94 | |**2023-02-21**|**MultiVehicle Simulator (MVSim): lightweight dynamics simulator for multiagents and mobile robotics research**|José-Luis Blanco-Claraco et.al.|[2302.11033v1](http://arxiv.org/abs/2302.11033v1)|null| 95 | |**2023-02-17**|**Probabilistic Qualitative Localization and Mapping**|Roee Mor et.al.|[2302.08735v1](http://arxiv.org/abs/2302.08735v1)|[link](https://github.com/anpl-technion/qsr_slam)| 96 | |**2023-02-16**|**Augmenting Inertial Motion Capture with SLAM Using EKF and SRUKF Data Fusion Algorithms**|Mohammad Mahdi Azarbeik et.al.|[2302.08294v1](http://arxiv.org/abs/2302.08294v1)|null| 97 | |**2023-02-15**|**Continuous-Time Fixed-Lag Smoothing for LiDAR-Inertial-Camera SLAM**|Jiajun Lv et.al.|[2302.07456v1](http://arxiv.org/abs/2302.07456v1)|[link](https://github.com/april-zju/clic)| 98 | |**2023-02-14**|**ConceptFusion: Open-set Multimodal 3D Mapping**|Krishna Murthy Jatavallabhula et.al.|[2302.07241v2](http://arxiv.org/abs/2302.07241v2)|null| 99 | |**2023-02-13**|**Simplified Continuous High Dimensional Belief Space Planning with Adaptive Probabilistic Belief-dependent Constraints**|Andrey Zhitnikov et.al.|[2302.06697v1](http://arxiv.org/abs/2302.06697v1)|null| 100 | |**2023-02-13**|**Mini bot 3D: A ROS based Gazebo Simulation**|B. Udugama et.al.|[2302.06368v1](http://arxiv.org/abs/2302.06368v1)|null| 101 | |**2023-02-13**|**Evolution of SLAM: Toward the Robust-Perception of Autonomy**|B. Udugama et.al.|[2302.06365v1](http://arxiv.org/abs/2302.06365v1)|null| 102 | |**2023-02-08**|**Task Space Control of Robot Manipulators based on Visual SLAM**|Seyed Hamed Hashemi et.al.|[2302.04163v1](http://arxiv.org/abs/2302.04163v1)|null| 103 | |**2023-02-08**|**SLaM: Student-Label Mixing for Semi-Supervised Knowledge Distillation**|Vasilis Kontonis et.al.|[2302.03806v1](http://arxiv.org/abs/2302.03806v1)|null| 104 | |**2023-02-07**|**NICER-SLAM: Neural Implicit Scene Encoding for RGB SLAM**|Zihan Zhu et.al.|[2302.03594v1](http://arxiv.org/abs/2302.03594v1)|null| 105 | |**2023-02-03**|**vMAP: Vectorised Object Mapping for Neural Field SLAM**|Xin Kong et.al.|[2302.01838v1](http://arxiv.org/abs/2302.01838v1)|[link](https://github.com/kxhit/vMAP)| 106 | |**2023-02-01**|**A Projective Geometric View for 6D Pose Estimation in mmWave MIMO Systems**|Shengqiang Shen et.al.|[2302.00227v2](http://arxiv.org/abs/2302.00227v2)|null| 107 | |**2023-01-27**|**HDPV-SLAM: Hybrid Depth-augmented Panoramic Visual SLAM for Mobile Mapping System with Tilted LiDAR and Panoramic Visual Camera**|Mostafa Ahmadi et.al.|[2301.11823v1](http://arxiv.org/abs/2301.11823v1)|null| 108 | |**2023-01-26**|**Distributed Optimization Methods for Multi-Robot Systems: Part I -- A Tutorial**|Ola Shorinwa et.al.|[2301.11313v1](http://arxiv.org/abs/2301.11313v1)|null| 109 | 110 | ### Visual Localization 111 | |Publish Date|Title|Authors|PDF|Code| 112 | | :---: | :---: | :---: | :---: | :---: | 113 | |**2023-03-02**|**Teach a Robot to FISH: Versatile Imitation from One Minute of Demonstrations**|Siddhant Haldar et.al.|[2303.01497v1](http://arxiv.org/abs/2303.01497v1)|null| 114 | |**2023-03-02**|**Dataset Creation Pipeline for Camera-Based Heart Rate Estimation**|Mohamed Moustafa et.al.|[2303.01468v1](http://arxiv.org/abs/2303.01468v1)|null| 115 | |**2023-03-02**|**3D generation on ImageNet**|Ivan Skorokhodov et.al.|[2303.01416v1](http://arxiv.org/abs/2303.01416v1)|null| 116 | |**2023-03-02**|**NLP Workbench: Efficient and Extensible Integration of State-of-the-art Text Mining Tools**|Peiran Yao et.al.|[2303.01410v1](http://arxiv.org/abs/2303.01410v1)|null| 117 | |**2023-03-02**|**AdvRain: Adversarial Raindrops to Attack Camera-based Smart Vision Systems**|Amira Guesmi et.al.|[2303.01338v1](http://arxiv.org/abs/2303.01338v1)|null| 118 | |**2023-03-02**|**NeU-NBV: Next Best View Planning Using Uncertainty Estimation in Image-Based Neural Rendering**|Liren Jin et.al.|[2303.01284v1](http://arxiv.org/abs/2303.01284v1)|null| 119 | |**2023-03-02**|**Autonomous Aerial Filming With Distributed Lighting by a Team of Unmanned Aerial Vehicles**|Vít Krátký et.al.|[2303.01177v1](http://arxiv.org/abs/2303.01177v1)|null| 120 | |**2023-03-02**|**Autonomous Reflectance Transformation Imaging by a Team of Unmanned Aerial Vehicles**|Vít Krátký et.al.|[2303.01162v1](http://arxiv.org/abs/2303.01162v1)|null| 121 | |**2023-03-02**|**Marker-based Visual SLAM leveraging Hierarchical Representations**|Ali Tourani et.al.|[2303.01155v1](http://arxiv.org/abs/2303.01155v1)|null| 122 | |**2023-03-02**|**Using simulation to quantify the performance of automotive perception systems**|Zhenyi Liu et.al.|[2303.00983v1](http://arxiv.org/abs/2303.00983v1)|null| 123 | |**2023-03-02**|**Ego-Vehicle Action Recognition based on Semi-Supervised Contrastive Learning**|Chihiro Noguchi et.al.|[2303.00977v1](http://arxiv.org/abs/2303.00977v1)|null| 124 | |**2023-03-02**|**Open Problem: Optimal Best Arm Identification with Fixed Budget**|Chao Qin et.al.|[2303.00950v1](http://arxiv.org/abs/2303.00950v1)|null| 125 | |**2023-03-02**|**Real-time Audio Video Enhancement \\with a Microphone Array and Headphones**|Jacob Kealey et.al.|[2303.00949v1](http://arxiv.org/abs/2303.00949v1)|null| 126 | |**2023-03-02**|**MoSS: Monocular Shape Sensing for Continuum Robots**|Chengnan Shentu et.al.|[2303.00891v1](http://arxiv.org/abs/2303.00891v1)|null| 127 | |**2023-03-02**|**Bayesian Deep Learning for Affordance Segmentation in images**|Lorenzo Mur-Labadia et.al.|[2303.00871v1](http://arxiv.org/abs/2303.00871v1)|null| 128 | |**2023-03-01**|**S-NeRF: Neural Radiance Fields for Street Views**|Ziyang Xie et.al.|[2303.00749v1](http://arxiv.org/abs/2303.00749v1)|null| 129 | |**2023-03-01**|**OSRE: Object-to-Spot Rotation Estimation for Bike Parking Assessment**|Saghir Alfasly et.al.|[2303.00725v1](http://arxiv.org/abs/2303.00725v1)|null| 130 | |**2023-03-01**|**Lunar impact flash results and space surveillance activities at Kryoneri Observatory**|Alexios Liakos et.al.|[2303.00670v1](http://arxiv.org/abs/2303.00670v1)|null| 131 | |**2023-03-01**|**ROCO: A Roundabout Traffic Conflict Dataset**|Depu Meng et.al.|[2303.00563v2](http://arxiv.org/abs/2303.00563v2)|[link](https://github.com/michigan-traffic-lab/roco)| 132 | |**2023-03-01**|**Mitigating Skewed Bidding for Conference Paper Assignment**|Inbal Rozencweig et.al.|[2303.00435v1](http://arxiv.org/abs/2303.00435v1)|null| 133 | |**2023-03-01**|**Motion Estimation for Fisheye Video With an Application to Temporal Resolution Enhancement**|Andrea Eichenseer et.al.|[2303.00433v1](http://arxiv.org/abs/2303.00433v1)|null| 134 | |**2023-03-01**|**Multiperspective Teaching of Unknown Objects via Shared-gaze-based Multimodal Human-Robot Interaction**|Daniel Weber et.al.|[2303.00423v1](http://arxiv.org/abs/2303.00423v1)|null| 135 | |**2023-03-01**|**Validating Monte Carlo simulations for an analysis chain in H.E.S.S**|Fabian Leuschner et.al.|[2303.00412v1](http://arxiv.org/abs/2303.00412v1)|null| 136 | |**2023-03-01**|**AI-Based Multi-Object Relative State Estimation with Self-Calibration Capabilities**|Thomas Jantos et.al.|[2303.00371v1](http://arxiv.org/abs/2303.00371v1)|null| 137 | |**2023-03-01**|**Event Fusion Photometric Stereo Network**|Wonjeong Ryoo et.al.|[2303.00308v1](http://arxiv.org/abs/2303.00308v1)|null| 138 | |**2023-03-01**|**Renderable Neural Radiance Map for Visual Navigation**|Obin Kwon et.al.|[2303.00304v1](http://arxiv.org/abs/2303.00304v1)|null| 139 | |**2023-03-01**|**Capturing the motion of every joint: 3D human pose and shape estimation with independent tokens**|Sen Yang et.al.|[2303.00298v1](http://arxiv.org/abs/2303.00298v1)|[link](https://github.com/yangsenius/int_hmr_model)| 140 | |**2023-03-01**|**UAV Tracking with Lidar as a Camera Sensors in GNSS-Denied Environments**|Ha Sier et.al.|[2303.00277v1](http://arxiv.org/abs/2303.00277v1)|null| 141 | |**2023-03-01**|**Influence of Spattering on In-process Layer Surface Roughness during Laser Powder Bed Fusion**|Haolin Zhang et.al.|[2303.00272v1](http://arxiv.org/abs/2303.00272v1)|null| 142 | |**2023-02-28**|**Onboard dynamic-object detection and tracking for autonomous robot navigation with RGB-D camera**|Zhefan Xu et.al.|[2303.00132v1](http://arxiv.org/abs/2303.00132v1)|null| 143 | -------------------------------------------------------------------------------- /database/storage/storage_2023-07-12.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-07-12 21:14:43 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### SLAM 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VIO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### VO 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### Visual Localization 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-10-13.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-10-13 21:14:18 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VIO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### SLAM 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-10-14.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-10-14 21:12:09 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### SLAM 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VIO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### VO 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-12-09.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-12-09 21:09:01 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### Visual Localization 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2023-12-07**|**Visual Geometry Grounded Deep Structure From Motion**|Jianyuan Wang et.al.|[2312.04563v1](http://arxiv.org/abs/2312.04563v1)|null| 12 | |**2023-12-07**|**SPIDeRS: Structured Polarization for Invisible Depth and Reflectance Sensing**|Tomoki Ichikawa et.al.|[2312.04553v1](http://arxiv.org/abs/2312.04553v1)|null| 13 | |**2023-12-07**|**Free3D: Consistent Novel View Synthesis without 3D Representation**|Chuanxia Zheng et.al.|[2312.04551v1](http://arxiv.org/abs/2312.04551v1)|[link](https://github.com/lyndonzheng/Free3D)| 14 | |**2023-12-07**|**Multiview Aerial Visual Recognition (MAVREC): Can Multi-view Improve Aerial Visual Perception?**|Aritra Dutta et.al.|[2312.04548v1](http://arxiv.org/abs/2312.04548v1)|null| 15 | |**2023-12-07**|**Camera Height Doesn't Change: Unsupervised Monocular Scale-Aware Road-Scene Depth Estimation**|Genki Kinoshita et.al.|[2312.04530v1](http://arxiv.org/abs/2312.04530v1)|null| 16 | |**2023-12-07**|**Correspondences of the Third Kind: Camera Pose Estimation from Object Reflection**|Kohei Yamashita et.al.|[2312.04527v1](http://arxiv.org/abs/2312.04527v1)|null| 17 | |**2023-12-07**|**Bootstrapping Autonomous Radars with Self-Supervised Learning**|Yiduo Hao et.al.|[2312.04519v1](http://arxiv.org/abs/2312.04519v1)|null| 18 | |**2023-12-07**|**GaitGuard: Towards Private Gait in Mixed Reality**|Diana Romero et.al.|[2312.04470v1](http://arxiv.org/abs/2312.04470v1)|null| 19 | |**2023-12-07**|**Cascade-Zero123: One Image to Highly Consistent 3D with Self-Prompted Nearby Views**|Yabo Chen et.al.|[2312.04424v1](http://arxiv.org/abs/2312.04424v1)|null| 20 | |**2023-12-07**|**Accelerated Real-Life (ARL) Testing and Characterization of Automotive LiDAR Sensors to facilitate the Development and Validation of Enhanced Sensor Models**|Marcel Kettelgerdes et.al.|[2312.04229v1](http://arxiv.org/abs/2312.04229v1)|null| 21 | |**2023-12-07**|**Instance Tracking in 3D Scenes from Egocentric Videos**|Yunhan Zhao et.al.|[2312.04117v1](http://arxiv.org/abs/2312.04117v1)|null| 22 | |**2023-12-07**|**Identity-Obscured Neural Radiance Fields: Privacy-Preserving 3D Facial Reconstruction**|Jiayi Kong et.al.|[2312.04106v1](http://arxiv.org/abs/2312.04106v1)|null| 23 | |**2023-12-07**|**Unveiling a hidden bar-like structure in NGC1087: kinematic and photometric evidence using MUSE/VLT, ALMA and JWST**|Carlos López-Cobá et.al.|[2312.04098v1](http://arxiv.org/abs/2312.04098v1)|null| 24 | |**2023-12-07**|**Differentiable Registration of Images and LiDAR Point Clouds with VoxelPoint-to-Pixel Matching**|Junsheng Zhou et.al.|[2312.04060v1](http://arxiv.org/abs/2312.04060v1)|[link](https://github.com/junshengzhou/vp2p-match)| 25 | |**2023-12-06**|**Inpaint3D: 3D Scene Content Generation using 2D Inpainting Diffusion**|Kira Prabhu et.al.|[2312.03869v1](http://arxiv.org/abs/2312.03869v1)|null| 26 | |**2023-12-06**|**MotionCtrl: A Unified and Flexible Motion Controller for Video Generation**|Zhouxia Wang et.al.|[2312.03641v1](http://arxiv.org/abs/2312.03641v1)|null| 27 | |**2023-12-06**|**Training Neural Networks on RAW and HDR Images for Restoration Tasks**|Lei Luo et.al.|[2312.03640v1](http://arxiv.org/abs/2312.03640v1)|[link](https://github.com/gfxdisp/colorvideovdp)| 28 | |**2023-12-06**|**Automated Multimodal Data Annotation via Calibration With Indoor Positioning System**|Ryan Rubel et.al.|[2312.03608v1](http://arxiv.org/abs/2312.03608v1)|null| 29 | |**2023-12-06**|**Low-power, Continuous Remote Behavioral Localization with Event Cameras**|Friedhelm Hamann et.al.|[2312.03799v1](http://arxiv.org/abs/2312.03799v1)|null| 30 | |**2023-12-06**|**AnimatableDreamer: Text-Guided Non-rigid 3D Model Generation and Reconstruction with Canonical Score Distillation**|Xinzhou Wang et.al.|[2312.03795v1](http://arxiv.org/abs/2312.03795v1)|null| 31 | |**2023-12-06**|**From Detection to Action Recognition: An Edge-Based Pipeline for Robot Human Perception**|Petros Toupas et.al.|[2312.03477v1](http://arxiv.org/abs/2312.03477v1)|null| 32 | |**2023-12-06**|**Action Scene Graphs for Long-Form Understanding of Egocentric Videos**|Ivan Rodin et.al.|[2312.03391v1](http://arxiv.org/abs/2312.03391v1)|[link](https://github.com/fpv-iplab/easg)| 33 | |**2023-12-06**|**Evaluating the point cloud of individual trees generated from images based on Neural Radiance fields (NeRF) method**|Hongyu Huang et.al.|[2312.03372v1](http://arxiv.org/abs/2312.03372v1)|null| 34 | |**2023-12-06**|**Calibrating Figures**|Niels Lubbes et.al.|[2312.03354v1](http://arxiv.org/abs/2312.03354v1)|null| 35 | |**2023-12-05**|**Mitigation of the Brighter-Fatter Effect in the LSST Camera**|Alex Broughton et.al.|[2312.03115v1](http://arxiv.org/abs/2312.03115v1)|null| 36 | |**2023-12-05**|**ReconFusion: 3D Reconstruction with Diffusion Priors**|Rundi Wu et.al.|[2312.02981v1](http://arxiv.org/abs/2312.02981v1)|null| 37 | |**2023-12-05**|**MVHumanNet: A Large-scale Dataset of Multi-view Daily Dressing Human Captures**|Zhangyang Xiong et.al.|[2312.02963v1](http://arxiv.org/abs/2312.02963v1)|null| 38 | |**2023-12-05**|**WoVoGen: World Volume-aware Diffusion for Controllable Multi-camera Driving Scene Generation**|Jiachen Lu et.al.|[2312.02934v2](http://arxiv.org/abs/2312.02934v2)|[link](https://github.com/fudan-zvg/wovogen)| 39 | |**2023-12-05**|**LivePhoto: Real Image Animation with Text-guided Motion Control**|Xi Chen et.al.|[2312.02928v1](http://arxiv.org/abs/2312.02928v1)|null| 40 | |**2023-12-05**|**High-rate electron detectors to study Compton scattering in non-perturbative QED**|Antonios Athanassiadis et.al.|[2312.02924v1](http://arxiv.org/abs/2312.02924v1)|null| 41 | 42 | ### VO 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2023-12-05**|**DeepPointMap: Advancing LiDAR SLAM with Unified Neural Descriptors**|Xiaze Zhang et.al.|[2312.02684v1](http://arxiv.org/abs/2312.02684v1)|null| 46 | |**2023-12-05**|**GNSS Odometry: Precise Trajectory Estimation Based on Carrier Phase Cycle Slip Estimation**|Taro Suzuki et.al.|[2312.02424v1](http://arxiv.org/abs/2312.02424v1)|null| 47 | |**2023-12-04**|**iMatching: Imperative Correspondence Learning**|Zitong Zhan et.al.|[2312.02141v1](http://arxiv.org/abs/2312.02141v1)|null| 48 | |**2023-12-04**|**SE-LIO: Semantics-enhanced Solid-State-LiDAR-Inertial Odometry for Tree-rich Environments**|Tisheng Zhang et.al.|[2312.01809v1](http://arxiv.org/abs/2312.01809v1)|null| 49 | |**2023-12-01**|**LiDAR-based curb detection for ground truth annotation in automated driving validation**|Jose Luis Apellániz et.al.|[2312.00534v1](http://arxiv.org/abs/2312.00534v1)|null| 50 | |**2023-11-30**|**Event-based Visual Inertial Velometer**|Xiuyuan Lu et.al.|[2311.18189v1](http://arxiv.org/abs/2311.18189v1)|null| 51 | |**2023-11-23**|**MonoNav: MAV Navigation via Monocular Depth Estimation and Reconstruction**|Nathaniel Simon et.al.|[2311.14100v1](http://arxiv.org/abs/2311.14100v1)|null| 52 | |**2023-11-21**|**CoVOR-SLAM: Cooperative SLAM using Visual Odometry and Ranges for Multi-Robot Systems**|Young-Hee Lee et.al.|[2311.12580v1](http://arxiv.org/abs/2311.12580v1)|null| 53 | |**2023-11-20**|**MSCEqF: A Multi State Constraint Equivariant Filter for Vision-aided Inertial Navigation**|Alessandro Fornasier et.al.|[2311.11649v1](http://arxiv.org/abs/2311.11649v1)|[link](https://github.com/aau-cns/msceqf)| 54 | |**2023-11-19**|**Radarize: Large-Scale Radar SLAM for Indoor Environments**|Emerson Sie et.al.|[2311.11260v1](http://arxiv.org/abs/2311.11260v1)|null| 55 | |**2023-11-17**|**Multimodal Indoor Localization Using Crowdsourced Radio Maps**|Zhaoguang Yi et.al.|[2311.10601v1](http://arxiv.org/abs/2311.10601v1)|null| 56 | |**2023-11-16**|**Match and Locate: low-frequency monocular odometry based on deep feature matching**|Stepan Konev et.al.|[2311.10034v1](http://arxiv.org/abs/2311.10034v1)|null| 57 | |**2023-11-16**|**LIO-EKF: High Frequency LiDAR-Inertial Odometry using Extended Kalman Filters**|Yibin Wu et.al.|[2311.09887v1](http://arxiv.org/abs/2311.09887v1)|null| 58 | |**2023-11-16**|**Homography Initialization and Dynamic Weighting Algorithm Based on a Downward-Looking Camera and IMU**|Bo Dong et.al.|[2311.09622v1](http://arxiv.org/abs/2311.09622v1)|null| 59 | |**2023-11-15**|**Range-Visual-Inertial Sensor Fusion for Micro Aerial Vehicle Localization and Navigation**|Abhishek Goudar et.al.|[2311.09056v1](http://arxiv.org/abs/2311.09056v1)|[link](https://github.com/utiasdsl/ra_lan)| 60 | |**2023-11-15**|**AdVENTR: Autonomous Robot Navigation in Complex Outdoor Environments**|Kasun Weerakoon et.al.|[2311.08740v1](http://arxiv.org/abs/2311.08740v1)|null| 61 | |**2023-11-15**|**Multi-Radar Inertial Odometry for 3D State Estimation using mmWave Imaging Radar**|Jui-Te Huang et.al.|[2311.08608v1](http://arxiv.org/abs/2311.08608v1)|null| 62 | |**2023-11-14**|**Velocity-Based Channel Charting with Spatial Distribution Map Matching**|Maximilian Stahlke et.al.|[2311.08016v1](http://arxiv.org/abs/2311.08016v1)|null| 63 | |**2023-11-14**|**CP-SLAM: Collaborative Neural Point-based SLAM System**|Jiarui Hu et.al.|[2311.08013v1](http://arxiv.org/abs/2311.08013v1)|null| 64 | |**2023-11-13**|**LiLO: Lightweight and low-bias LiDAR Odometry method based on spherical range image filtering**|Edison P. Velasco-Sánchez et.al.|[2311.07291v1](http://arxiv.org/abs/2311.07291v1)|[link](https://github.com/aurova-lab/applications)| 65 | |**2023-11-10**|**Dense Visual Odometry Using Genetic Algorithm**|Slimane Djema et.al.|[2311.06149v1](http://arxiv.org/abs/2311.06149v1)|null| 66 | |**2023-11-09**|**PL-CVIO: Point-Line Cooperative Visual-Inertial Odometry**|Yanyu Zhang et.al.|[2311.05717v1](http://arxiv.org/abs/2311.05717v1)|null| 67 | |**2023-11-08**|**PLV-IEKF: Consistent Visual-Inertial Odometry using Points, Lines, and Vanishing Points**|Tong Hua et.al.|[2311.04477v1](http://arxiv.org/abs/2311.04477v1)|null| 68 | |**2023-11-07**|**Inertial Guided Uncertainty Estimation of Feature Correspondence in Visual-Inertial Odometry/SLAM**|Seongwook Yoon et.al.|[2311.03722v1](http://arxiv.org/abs/2311.03722v1)|null| 69 | |**2023-11-05**|**Race Against the Machine: a Fully-annotated, Open-design Dataset of Autonomous and Piloted High-speed Flight**|Michael Bosello et.al.|[2311.02667v1](http://arxiv.org/abs/2311.02667v1)|[link](https://github.com/tii-racing/drone-racing-dataset)| 70 | |**2023-11-02**|**Learning Unsupervised World Models for Autonomous Driving via Discrete Diffusion**|Lunjun Zhang et.al.|[2311.01017v2](http://arxiv.org/abs/2311.01017v2)|null| 71 | |**2023-10-30**|**Distributed multi-agent magnetic field norm SLAM with Gaussian processes**|Frida Viset et.al.|[2310.19400v1](http://arxiv.org/abs/2310.19400v1)|null| 72 | |**2023-10-27**|**Do we need scan-matching in radar odometry?**|Vladimír Kubelka et.al.|[2310.18117v1](http://arxiv.org/abs/2310.18117v1)|[link](https://github.com/kubelvla/mine-and-forest-radar-dataset)| 73 | |**2023-10-25**|**An Online Self-calibrating Refractive Camera Model with Application to Underwater Odometry**|Mohit Singh et.al.|[2310.16658v1](http://arxiv.org/abs/2310.16658v1)|[link](https://github.com/ntnu-arl/underwater-datasets)| 74 | |**2023-10-25**|**FoundLoc: Vision-based Onboard Aerial Localization in the Wild**|Yao He et.al.|[2310.16299v1](http://arxiv.org/abs/2310.16299v1)|null| 75 | 76 | ### VIO 77 | |Publish Date|Title|Authors|PDF|Code| 78 | | :---: | :---: | :---: | :---: | :---: | 79 | |**2023-12-06**|**Transformer-Powered Surrogates Close the ICF Simulation-Experiment Gap with Extremely Limited Data**|Matthew L. Olson et.al.|[2312.03642v1](http://arxiv.org/abs/2312.03642v1)|null| 80 | |**2023-12-05**|**Dynamic wetting experiments in microgravity and capillary dominated flows**|Domenico Fiorini et.al.|[2312.02754v1](http://arxiv.org/abs/2312.02754v1)|null| 81 | |**2023-12-05**|**DeepPointMap: Advancing LiDAR SLAM with Unified Neural Descriptors**|Xiaze Zhang et.al.|[2312.02684v1](http://arxiv.org/abs/2312.02684v1)|null| 82 | |**2023-12-05**|**Inertial Line-Of-Sight Stabilization Using a 3-DOF Spherical Parallel Manipulator with Coaxial Input Shafts**|Alexandre Le et.al.|[2312.02641v1](http://arxiv.org/abs/2312.02641v1)|null| 83 | |**2023-12-05**|**MAINS: A Magnetic Field Aided Inertial Navigation System for Indoor Positioning**|Chuan Huang et.al.|[2312.02599v1](http://arxiv.org/abs/2312.02599v1)|[link](https://github.com/huang-chuan/mainsvsmagekf)| 84 | |**2023-12-05**|**GNSS Odometry: Precise Trajectory Estimation Based on Carrier Phase Cycle Slip Estimation**|Taro Suzuki et.al.|[2312.02424v1](http://arxiv.org/abs/2312.02424v1)|null| 85 | |**2023-12-04**|**iMatching: Imperative Correspondence Learning**|Zitong Zhan et.al.|[2312.02141v1](http://arxiv.org/abs/2312.02141v1)|null| 86 | |**2023-12-04**|**SE-LIO: Semantics-enhanced Solid-State-LiDAR-Inertial Odometry for Tree-rich Environments**|Tisheng Zhang et.al.|[2312.01809v1](http://arxiv.org/abs/2312.01809v1)|null| 87 | |**2023-12-04**|**Feedback Cooling of an Insulating High-Q Diamagnetically Levitated Plate**|S. Tian et.al.|[2312.01660v1](http://arxiv.org/abs/2312.01660v1)|null| 88 | |**2023-12-04**|**SchurVINS: Schur Complement-Based Lightweight Visual Inertial Navigation System**|Yunfei Fan et.al.|[2312.01616v1](http://arxiv.org/abs/2312.01616v1)|null| 89 | |**2023-12-02**|**Experimentation on stochastic trajectories: from Brownian motion to inertial confined dynamics**|Azul María Brigante et.al.|[2312.01208v1](http://arxiv.org/abs/2312.01208v1)|null| 90 | |**2023-12-02**|**Vortex polarization and circulation statistics in isotropic turbulence**|L. Moriconi et.al.|[2312.01155v1](http://arxiv.org/abs/2312.01155v1)|null| 91 | |**2023-12-02**|**Dynamic Inertial Poser (DynaIP): Part-Based Motion Dynamics Learning for Enhanced Human Pose Estimation with Sparse Inertial Sensors**|Yu Zhang et.al.|[2312.02196v1](http://arxiv.org/abs/2312.02196v1)|null| 92 | |**2023-12-01**|**LiDAR-based curb detection for ground truth annotation in automated driving validation**|Jose Luis Apellániz et.al.|[2312.00534v1](http://arxiv.org/abs/2312.00534v1)|null| 93 | |**2023-12-01**|**Inertial (self-)collisions of viscoelastic solids with Lipschitz boundaries**|Antonín Češík et.al.|[2312.00431v1](http://arxiv.org/abs/2312.00431v1)|null| 94 | |**2023-11-30**|**Random self-propulsion to rotational motion of a microswimmer with inertial memory**|F Adersh et.al.|[2311.18722v1](http://arxiv.org/abs/2311.18722v1)|null| 95 | |**2023-11-30**|**Bridging Both Worlds in Semantics and Time: Domain Knowledge Based Analysis and Correlation of Industrial Process Attacks**|Moses Ike et.al.|[2311.18539v2](http://arxiv.org/abs/2311.18539v2)|null| 96 | |**2023-11-30**|**Event-based Visual Inertial Velometer**|Xiuyuan Lu et.al.|[2311.18189v1](http://arxiv.org/abs/2311.18189v1)|null| 97 | |**2023-11-30**|**PEOPLEx: PEdestrian Opportunistic Positioning LEveraging IMU, UWB, BLE and WiFi**|Pierre-Yves Lajoie et.al.|[2311.18182v1](http://arxiv.org/abs/2311.18182v1)|null| 98 | |**2023-11-28**|**A Continuous Dual-Axis Atomic Interferometric Inertial Sensor**|Pei-Qiang Yan et.al.|[2311.16557v1](http://arxiv.org/abs/2311.16557v1)|null| 99 | |**2023-11-27**|**Quartz Crystal Microbalance frequency response to finite-size adsorbents in liquid**|Alexander M. Leshansky et.al.|[2311.15880v1](http://arxiv.org/abs/2311.15880v1)|null| 100 | |**2023-11-27**|**Temporal Action Localization for Inertial-based Human Activity Recognition**|Marius Bock et.al.|[2311.15831v1](http://arxiv.org/abs/2311.15831v1)|null| 101 | |**2023-11-27**|**Tidal dissipation in rotating and evolving giant planets with application to exoplanet systems**|Yaroslav A. Lazovik et.al.|[2311.15815v1](http://arxiv.org/abs/2311.15815v1)|null| 102 | |**2023-11-27**|**Even-odd alternative dispersions and beyond. Part II. Noninertial and inertial particles, and, astrophysical chirality analogy**|Jian-Zhou Zhu et.al.|[2311.15659v2](http://arxiv.org/abs/2311.15659v2)|null| 103 | |**2023-11-27**|**Motility-induced coexistence of a hot liquid and a cold gas**|Lukas Hecht et.al.|[2311.15638v1](http://arxiv.org/abs/2311.15638v1)|null| 104 | |**2023-11-25**|**Rheology of suspensions of non-Brownian soft spheres across the jamming and viscous-to-inertial transitions**|Franco Tapia et.al.|[2311.15107v1](http://arxiv.org/abs/2311.15107v1)|null| 105 | |**2023-11-25**|**Nonequilibrium hyperuniform states in active turbulence**|Rainer Backofen et.al.|[2311.14959v1](http://arxiv.org/abs/2311.14959v1)|null| 106 | |**2023-11-23**|**MonoNav: MAV Navigation via Monocular Depth Estimation and Reconstruction**|Nathaniel Simon et.al.|[2311.14100v1](http://arxiv.org/abs/2311.14100v1)|null| 107 | |**2023-11-23**|**Timing relationships and resulting communications challenges in relativistic travel**|David Messerschmitt et.al.|[2311.14039v1](http://arxiv.org/abs/2311.14039v1)|null| 108 | |**2023-11-23**|**Quantum conditional mutual information of W state in non-inertial frames**|H Saveetha et.al.|[2311.14010v1](http://arxiv.org/abs/2311.14010v1)|null| 109 | -------------------------------------------------------------------------------- /database/storage/storage_2023-12-16.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-12-16 20:59:46 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### SLAM 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VIO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### VO 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### Visual Localization 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-12-18.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-12-18 21:15:39 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VIO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### SLAM 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### VO 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-12-19.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-12-19 21:10:17 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VIO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### SLAM 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### VO 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-12-20.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-12-20 21:09:56 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VIO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### SLAM 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### Visual Localization 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-12-21.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-12-21 21:09:13 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### SLAM 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### VIO 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2023-12-31.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2023-12-31 20:59:33 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VIO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### Visual Localization 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### VO 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### SLAM 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2024-03-18.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-03-18 21:00:30 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### Visual Localization 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VIO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### SLAM 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### VO 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2024-05-18.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-05-18 21:01:11 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### SLAM 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### Visual Localization 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### VO 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### VIO 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2024-05-19.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-05-19 20:59:57 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VIO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### SLAM 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2024-06-15.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-06-15 21:08:28 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VIO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### VO 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### SLAM 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2024-06-17.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-06-17 21:00:01 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | 12 | ### SLAM 13 | |Publish Date|Title|Authors|PDF|Code| 14 | | :---: | :---: | :---: | :---: | :---: | 15 | 16 | ### Visual Localization 17 | |Publish Date|Title|Authors|PDF|Code| 18 | | :---: | :---: | :---: | :---: | :---: | 19 | 20 | ### VIO 21 | |Publish Date|Title|Authors|PDF|Code| 22 | | :---: | :---: | :---: | :---: | :---: | 23 | -------------------------------------------------------------------------------- /database/storage/storage_2024-07-03.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-07-03 20:59:57 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2024-07-02**|**I2EKF-LO: A Dual-Iteration Extended Kalman Filter Based LiDAR Odometry**|Wenlu Yu et.al.|[2407.02190v1](http://arxiv.org/abs/2407.02190v1)|null| 12 | |**2024-07-02**|**PO-MSCKF: An Efficient Visual-Inertial Odometry by Reconstructing the Multi-State Constrained Kalman Filter with the Pose-only Theory**|Du Xueyu et.al.|[2407.01888v1](http://arxiv.org/abs/2407.01888v1)|null| 13 | |**2024-07-01**|**Preserving Relative Localization of FoV-Limited Drone Swarm via Active Mutual Observation**|Lianjie Guo et.al.|[2407.01292v1](http://arxiv.org/abs/2407.01292v1)|null| 14 | |**2024-06-27**|**RAVE: A Framework for Radar Ego-Velocity Estimation**|Vlaho-Josip Štironja et.al.|[2406.18850v1](http://arxiv.org/abs/2406.18850v1)|null| 15 | |**2024-06-23**|**Imperative Learning: A Self-supervised Neural-Symbolic Learning Framework for Robot Autonomy**|Chen Wang et.al.|[2406.16087v1](http://arxiv.org/abs/2406.16087v1)|null| 16 | |**2024-06-21**|**LiCS: Navigation using Learned-imitation on Cluttered Space**|Joshua Julian Damanik et.al.|[2406.14947v1](http://arxiv.org/abs/2406.14947v1)|[link](https://github.com/damanikjosh/the-barn-challenge)| 17 | |**2024-06-19**|**Low Latency Visual Inertial Odometry with On-Sensor Accelerated Optical Flow for Resource-Constrained UAVs**|Jonas Kühne et.al.|[2406.13345v1](http://arxiv.org/abs/2406.13345v1)|null| 18 | |**2024-06-19**|**The Kinetics Observer: A Tightly Coupled Estimator for Legged Robots**|Arnaud Demont et.al.|[2406.13267v1](http://arxiv.org/abs/2406.13267v1)|null| 19 | |**2024-06-16**|**Self-supervised Pretraining and Finetuning for Monocular Depth and Visual Odometry**|Boris Chidlovskii et.al.|[2406.11019v1](http://arxiv.org/abs/2406.11019v1)|null| 20 | |**2024-06-14**|**PixRO: Pixel-Distributed Rotational Odometry with Gaussian Belief Propagation**|Ignacio Alzugaray et.al.|[2406.09726v1](http://arxiv.org/abs/2406.09726v1)|null| 21 | |**2024-06-12**|**From Variance to Veracity: Unbundling and Mitigating Gradient Variance in Differentiable Bundle Adjustment Layers**|Swaminathan Gurumurthy et.al.|[2406.07785v1](http://arxiv.org/abs/2406.07785v1)|[link](https://github.com/swami1995/v2v)| 22 | |**2024-06-04**|**A Multipurpose Interface for Close- and Far-Proximity Control of Mobile Collaborative Robots**|Hamidreza Raei et.al.|[2406.02171v1](http://arxiv.org/abs/2406.02171v1)|null| 23 | |**2024-06-04**|**An Observability-Constrained Magnetic-Field-Aided Inertial Navigation System**|Chuan Huang et.al.|[2406.02161v1](http://arxiv.org/abs/2406.02161v1)|[link](https://github.com/Huang-Chuan/OC-MAINS-code)| 24 | |**2024-06-04**|**MS-Mapping: Multi-session LiDAR Mapping with Wasserstein-based Keyframe Selection**|Xiangcheng Hu et.al.|[2406.02096v1](http://arxiv.org/abs/2406.02096v1)|[link](https://github.com/jokerjohn/ms-mapping)| 25 | |**2024-06-03**|**The Empirical Impact of Forgetting and Transfer in Continual Visual Odometry**|Paolo Cudrano et.al.|[2406.01797v1](http://arxiv.org/abs/2406.01797v1)|null| 26 | |**2024-06-03**|**C$^3$P-VoxelMap: Compact, Cumulative and Coalescible Probabilistic Voxel Mapping**|Xu Yang et.al.|[2406.01195v1](http://arxiv.org/abs/2406.01195v1)|null| 27 | |**2024-06-03**|**Self-Supervised Geometry-Guided Initialization for Robust Monocular Visual Odometry**|Takayuki Kanai et.al.|[2406.00929v1](http://arxiv.org/abs/2406.00929v1)|null| 28 | |**2024-05-30**|**TAMBRIDGE: Bridging Frame-Centered Tracking and 3D Gaussian Splatting for Enhanced SLAM**|Peifeng Jiang et.al.|[2405.19614v1](http://arxiv.org/abs/2405.19614v1)|null| 29 | |**2024-05-27**|**Adaptive VIO: Deep Visual-Inertial Odometry with Online Continual Learning**|Youqi Pan et.al.|[2405.16754v1](http://arxiv.org/abs/2405.16754v1)|null| 30 | |**2024-05-23**|**Advancements in Translation Accuracy for Stereo Visual-Inertial Initialization**|Han Song et.al.|[2405.15082v3](http://arxiv.org/abs/2405.15082v3)|null| 31 | |**2024-05-23**|**VINS-Multi: A Robust Asynchronous Multi-camera-IMU State Estimator**|Luqi Wang et.al.|[2405.14539v1](http://arxiv.org/abs/2405.14539v1)|null| 32 | |**2024-05-21**|**Fast Estimation of Relative Transformation Based on Fusion of Odometry and UWB Ranging Data**|Yuan Fu et.al.|[2405.12577v1](http://arxiv.org/abs/2405.12577v1)|null| 33 | |**2024-05-21**|**NV-LIO: LiDAR-Inertial Odometry using Normal Vectors Towards Robust SLAM in Multifloor Environments**|Dongha Chung et.al.|[2405.12563v2](http://arxiv.org/abs/2405.12563v2)|[link](https://github.com/dhchung/nv_lio)| 34 | |**2024-05-20**|**EdgeLoc: A Communication-Adaptive Parallel System for Real-Time Localization in Infrastructure-Assisted Autonomous Driving**|Boyi Liu et.al.|[2405.12120v2](http://arxiv.org/abs/2405.12120v2)|null| 35 | |**2024-05-17**|**Occupancy-SLAM: Simultaneously Optimizing Robot Poses and Continuous Occupancy Map**|Liang Zhao et.al.|[2405.10743v1](http://arxiv.org/abs/2405.10743v1)|null| 36 | |**2024-05-16**|**EFEAR-4D: Ego-Velocity Filtering for Efficient and Accurate 4D radar Odometry**|Xiaoyi Wu et.al.|[2405.09780v1](http://arxiv.org/abs/2405.09780v1)|null| 37 | |**2024-05-14**|**BEVRender: Vision-based Cross-view Vehicle Registration in Off-road GNSS-denied Environment**|Lihong Jin et.al.|[2405.09001v1](http://arxiv.org/abs/2405.09001v1)|null| 38 | |**2024-05-13**|**Automatic Odometry-Less OpenDRIVE Generation From Sparse Point Clouds**|Leon Eisemann et.al.|[2405.07544v1](http://arxiv.org/abs/2405.07544v1)|null| 39 | |**2024-05-10**|**MGS-SLAM: Monocular Sparse Tracking and Gaussian Mapping with Depth Smooth Regularization**|Pengcheng Zhu et.al.|[2405.06241v1](http://arxiv.org/abs/2405.06241v1)|null| 40 | |**2024-05-09**|**MAD-ICP: It Is All About Matching Data -- Robust and Informed LiDAR Odometry**|Simone Ferrari et.al.|[2405.05828v1](http://arxiv.org/abs/2405.05828v1)|[link](https://github.com/rvp-group/mad-icp)| 41 | 42 | ### VIO 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2024-07-02**|**How turbulence increases the bubble-particle collision rate**|Linfeng Jiang et.al.|[2407.02234v1](http://arxiv.org/abs/2407.02234v1)|null| 46 | |**2024-07-02**|**Efficient Extrinsic Self-Calibration of Multiple IMUs using Measurement Subset Selection**|Jongwon Lee et.al.|[2407.02232v1](http://arxiv.org/abs/2407.02232v1)|null| 47 | |**2024-07-02**|**I2EKF-LO: A Dual-Iteration Extended Kalman Filter Based LiDAR Odometry**|Wenlu Yu et.al.|[2407.02190v1](http://arxiv.org/abs/2407.02190v1)|null| 48 | |**2024-07-02**|**Mass crystals and cage effect in vorticity crystals**|Jean-Régis Angilella et.al.|[2407.02001v1](http://arxiv.org/abs/2407.02001v1)|null| 49 | |**2024-07-02**|**PO-MSCKF: An Efficient Visual-Inertial Odometry by Reconstructing the Multi-State Constrained Kalman Filter with the Pose-only Theory**|Du Xueyu et.al.|[2407.01888v1](http://arxiv.org/abs/2407.01888v1)|null| 50 | |**2024-07-01**|**AquaMILR: Mechanical intelligence simplifies control of undulatory robots in cluttered fluid environments**|Tianyu Wang et.al.|[2407.01733v1](http://arxiv.org/abs/2407.01733v1)|null| 51 | |**2024-07-01**|**Preserving Relative Localization of FoV-Limited Drone Swarm via Active Mutual Observation**|Lianjie Guo et.al.|[2407.01292v1](http://arxiv.org/abs/2407.01292v1)|null| 52 | |**2024-07-01**|**Investigation of the actuation system of the inertial sensor for high-precision space missions using torsion pendulum**|Fangchao Yang et.al.|[2407.01162v1](http://arxiv.org/abs/2407.01162v1)|null| 53 | |**2024-07-01**|**Tame fields, Graded Rings and Finite Complete Sequences of Key Polynomials**|Caio Henrique Silva de Souza et.al.|[2407.01030v1](http://arxiv.org/abs/2407.01030v1)|null| 54 | |**2024-06-30**|**A Perspective on Quantum Sensors from Basic Research to Commercial Applications**|Eun Oh et.al.|[2407.00689v1](http://arxiv.org/abs/2407.00689v1)|null| 55 | |**2024-06-27**|**A Third Order Dynamical System for Mixed Variational Inequalities**|Oday Hazaimah et.al.|[2406.19345v1](http://arxiv.org/abs/2406.19345v1)|null| 56 | |**2024-06-27**|**RAVE: A Framework for Radar Ego-Velocity Estimation**|Vlaho-Josip Štironja et.al.|[2406.18850v1](http://arxiv.org/abs/2406.18850v1)|null| 57 | |**2024-06-25**|**The equations of extended magnetohydrodynamics**|Christophe Cheverry et.al.|[2406.17356v1](http://arxiv.org/abs/2406.17356v1)|null| 58 | |**2024-06-24**|**PenSLR: Persian end-to-end Sign Language Recognition Using Ensembling**|Amirparsa Salmankhah et.al.|[2406.16388v1](http://arxiv.org/abs/2406.16388v1)|null| 59 | |**2024-06-24**|**AI for Equitable Tennis Training: Leveraging AI for Equitable and Accurate Classification of Tennis Skill Levels and Training Phases**|Gyanna Gao et.al.|[2406.16987v1](http://arxiv.org/abs/2406.16987v1)|null| 60 | |**2024-06-23**|**Imperative Learning: A Self-supervised Neural-Symbolic Learning Framework for Robot Autonomy**|Chen Wang et.al.|[2406.16087v1](http://arxiv.org/abs/2406.16087v1)|null| 61 | |**2024-06-21**|**LiCS: Navigation using Learned-imitation on Cluttered Space**|Joshua Julian Damanik et.al.|[2406.14947v1](http://arxiv.org/abs/2406.14947v1)|[link](https://github.com/damanikjosh/the-barn-challenge)| 62 | |**2024-06-20**|**Gravitational Scattering and Beyond from Extreme Mass Ratio Effective Field Theory**|Clifford Cheung et.al.|[2406.14770v1](http://arxiv.org/abs/2406.14770v1)|null| 63 | |**2024-06-20**|**LLaSA: Large Multimodal Agent for Human Activity Analysis Through Wearable Sensors**|Sheikh Asif Imran et.al.|[2406.14498v1](http://arxiv.org/abs/2406.14498v1)|[link](https://github.com/bashlab/llasa)| 64 | |**2024-06-20**|**The Bose-Marletto-Vedral proposal in different frames of reference and the quantum nature of gravity**|Antonia Weber et.al.|[2406.14334v1](http://arxiv.org/abs/2406.14334v1)|null| 65 | |**2024-06-19**|**Effects of settling on inertial particle slip velocity statistics in wall bounded flows**|Andrew P. Grace et.al.|[2406.13680v1](http://arxiv.org/abs/2406.13680v1)|null| 66 | |**2024-06-19**|**Strong Noninertial Radiative Shifts in Atomic Spectra at Low Accelerations**|Navdeep Arya et.al.|[2406.13481v1](http://arxiv.org/abs/2406.13481v1)|null| 67 | |**2024-06-19**|**Low Latency Visual Inertial Odometry with On-Sensor Accelerated Optical Flow for Resource-Constrained UAVs**|Jonas Kühne et.al.|[2406.13345v1](http://arxiv.org/abs/2406.13345v1)|null| 68 | |**2024-06-19**|**The Kinetics Observer: A Tightly Coupled Estimator for Legged Robots**|Arnaud Demont et.al.|[2406.13267v1](http://arxiv.org/abs/2406.13267v1)|null| 69 | |**2024-06-18**|**Unsupervised explainable activity prediction in competitive Nordic Walking from experimental data**|Silvia García-Méndez et.al.|[2406.12762v1](http://arxiv.org/abs/2406.12762v1)|null| 70 | |**2024-06-18**|**EarDA: Towards Accurate and Data-Efficient Earable Activity Sensing**|Shengzhe Lyu et.al.|[2406.16943v1](http://arxiv.org/abs/2406.16943v1)|null| 71 | |**2024-06-17**|**Optimum signal duration for Human Activity Recognition based on Deep Convolutional Neural Networks**|Farhad Nazari et.al.|[2406.11164v1](http://arxiv.org/abs/2406.11164v1)|null| 72 | |**2024-06-16**|**Self-supervised Pretraining and Finetuning for Monocular Depth and Visual Odometry**|Boris Chidlovskii et.al.|[2406.11019v1](http://arxiv.org/abs/2406.11019v1)|null| 73 | |**2024-06-16**|**Collisional whistler instability and electron temperature staircase in inhomogeneous plasma**|N. A. Lopez et.al.|[2406.10979v1](http://arxiv.org/abs/2406.10979v1)|null| 74 | |**2024-06-16**|**Acceleration Noise Induced Decoherence in Stern-Gerlach Interferometers for Gravity Experiments**|Meng-Zhi Wu et.al.|[2406.10832v1](http://arxiv.org/abs/2406.10832v1)|null| 75 | 76 | ### Visual Localization 77 | |Publish Date|Title|Authors|PDF|Code| 78 | | :---: | :---: | :---: | :---: | :---: | 79 | |**2024-07-02**|**Investigating Event-Based Cameras for Video Frame Interpolation in Sports**|Antoine Deckyvere et.al.|[2407.02370v1](http://arxiv.org/abs/2407.02370v1)|null| 80 | |**2024-07-02**|**Sign Language Recognition Based On Facial Expression and Hand Skeleton**|Zhiyu Long et.al.|[2407.02241v1](http://arxiv.org/abs/2407.02241v1)|null| 81 | |**2024-07-02**|**Detecting Driver Fatigue With Eye Blink Behavior**|Ali Akin et.al.|[2407.02222v1](http://arxiv.org/abs/2407.02222v1)|null| 82 | |**2024-07-02**|**BeNeRF: Neural Radiance Fields from a Single Blurry Image and Event Stream**|Wenpu Li et.al.|[2407.02174v1](http://arxiv.org/abs/2407.02174v1)|[link](https://github.com/WU-CVGL/BeNeRF)| 83 | |**2024-07-02**|**RETINA: a hardware-in-the-loop optical facility with reduced optical aberrations**|Paolo Panicucci et.al.|[2407.02172v1](http://arxiv.org/abs/2407.02172v1)|null| 84 | |**2024-07-02**|**VRBiom: A New Periocular Dataset for Biometric Applications of HMD**|Ketan Kotwal et.al.|[2407.02150v1](http://arxiv.org/abs/2407.02150v1)|null| 85 | |**2024-07-02**|**Hierarchical Temporal Context Learning for Camera-based Semantic Scene Completion**|Bohan Li et.al.|[2407.02077v1](http://arxiv.org/abs/2407.02077v1)|[link](https://github.com/arlo0o/htcl)| 86 | |**2024-07-02**|**CountFormer: Multi-View Crowd Counting Transformer**|Hong Mo et.al.|[2407.02047v1](http://arxiv.org/abs/2407.02047v1)|[link](https://github.com/MandyMo/ECCV_Countformer)| 87 | |**2024-07-02**|**Camera-LiDAR Cross-modality Gait Recognition**|Wenxuan Guo et.al.|[2407.02038v1](http://arxiv.org/abs/2407.02038v1)|null| 88 | |**2024-07-02**|**Indoor 3D Reconstruction with an Unknown Camera-Projector Pair**|Zhaoshuai Qi et.al.|[2407.01945v1](http://arxiv.org/abs/2407.01945v1)|null| 89 | |**2024-07-01**|**Active Human Pose Estimation via an Autonomous UAV Agent**|Jingxi Chen et.al.|[2407.01811v1](http://arxiv.org/abs/2407.01811v1)|null| 90 | |**2024-07-01**|**Optimal Sample Lens Positioning in Digital Camera Systems**|Ali Karaoglu et.al.|[2407.01789v1](http://arxiv.org/abs/2407.01789v1)|null| 91 | |**2024-07-01**|**DRAGON: Drone and Ground Gaussian Splatting for 3D Building Reconstruction**|Yujin Ham et.al.|[2407.01761v1](http://arxiv.org/abs/2407.01761v1)|null| 92 | |**2024-07-01**|**VolETA: One- and Few-shot Food Volume Estimation**|Ahmad AlMughrabi et.al.|[2407.01717v1](http://arxiv.org/abs/2407.01717v1)|null| 93 | |**2024-07-01**|**E.T. the Exceptional Trajectories: Text-to-camera-trajectory generation with character awareness**|Robin Courant et.al.|[2407.01516v1](http://arxiv.org/abs/2407.01516v1)|[link](https://github.com/robincourant/DIRECTOR)| 94 | |**2024-07-01**|**AtLAST Science Overview Report**|Mark Booth et.al.|[2407.01413v1](http://arxiv.org/abs/2407.01413v1)|null| 95 | |**2024-07-01**|**Optimizing Age of Information in Vehicular Edge Computing with Federated Graph Neural Network Multi-Agent Reinforcement Learning**|Wenhua Wang et.al.|[2407.02342v1](http://arxiv.org/abs/2407.02342v1)|[link](https://github.com/qiongwu86/optimizing-aoi-in-vec-with-federated-graph-neural-network-multi-agent-reinforcement-learning)| 96 | |**2024-07-01**|**Preserving Relative Localization of FoV-Limited Drone Swarm via Active Mutual Observation**|Lianjie Guo et.al.|[2407.01292v1](http://arxiv.org/abs/2407.01292v1)|null| 97 | |**2024-07-01**|**Preliminary results of sky brightness measurements in near-infrared at Lenghu, China**|Jinji Li et.al.|[2407.01118v1](http://arxiv.org/abs/2407.01118v1)|null| 98 | |**2024-07-01**|**GMT: A Robust Global Association Model for Multi-Target Multi-Camera Tracking**|Huijie Fan et.al.|[2407.01007v1](http://arxiv.org/abs/2407.01007v1)|null| 99 | |**2024-07-01**|**Pre-capture Privacy via Adaptive Single-Pixel Imaging**|Yoko Sogabe et.al.|[2407.00991v1](http://arxiv.org/abs/2407.00991v1)|null| 100 | |**2024-07-01**|**Object Segmentation from Open-Vocabulary Manipulation Instructions Based on Optimal Transport Polygon Matching with Multimodal Foundation Models**|Takayuki Nishimura et.al.|[2407.00985v1](http://arxiv.org/abs/2407.00985v1)|null| 101 | |**2024-07-01**|**Real-Time Neuromorphic Navigation: Integrating Event-Based Vision and Physics-Driven Planning on a Parrot Bebop2 Quadrotor**|Amogh Joshi et.al.|[2407.00931v1](http://arxiv.org/abs/2407.00931v1)|null| 102 | |**2024-07-01**|**High-sensitivity multichannel zero-to-ultralow field NMR with atomic magnetometer arrays**|Blake Andrews et.al.|[2407.00929v1](http://arxiv.org/abs/2407.00929v1)|null| 103 | |**2024-06-30**|**Ego-to-Exo: Interfacing Third Person Visuals from Egocentric Views in Real-time for Improved ROV Teleoperation**|Adnan Abdullah et.al.|[2407.00848v1](http://arxiv.org/abs/2407.00848v1)|null| 104 | |**2024-06-30**|**Engineering an Efficient Object Tracker for Non-Linear Motion**|Momir Adžemović et.al.|[2407.00738v1](http://arxiv.org/abs/2407.00738v1)|null| 105 | |**2024-06-30**|**CaFNet: A Confidence-Driven Framework for Radar Camera Depth Estimation**|Huawei Sun et.al.|[2407.00697v1](http://arxiv.org/abs/2407.00697v1)|null| 106 | |**2024-06-30**|**OfCaM: Global Human Mesh Recovery via Optimization-free Camera Motion Scale Calibration**|Fengyuan Yang et.al.|[2407.00574v1](http://arxiv.org/abs/2407.00574v1)|null| 107 | |**2024-06-30**|**An abstract theory of sensor eventification**|Yulin Zhang et.al.|[2407.00563v1](http://arxiv.org/abs/2407.00563v1)|null| 108 | |**2024-06-29**|**Infrared Computer Vision for Utility-Scale Photovoltaic Array Inspection**|David F. Ramirez et.al.|[2407.00544v1](http://arxiv.org/abs/2407.00544v1)|null| 109 | -------------------------------------------------------------------------------- /database/storage/storage_2024-09-12.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-09-12 21:11:50 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2024-09-11**|**Equivariant Filter for Tightly Coupled LiDAR-Inertial Odometry**|Anbo Tao et.al.|[2409.06948v1](http://arxiv.org/abs/2409.06948v1)|null| 12 | |**2024-09-08**|**HelmetPoser: A Helmet-Mounted IMU Dataset for Data-Driven Estimation of Human Head Motion in Diverse Conditions**|Jianping Li et.al.|[2409.05006v1](http://arxiv.org/abs/2409.05006v1)|null| 13 | |**2024-09-06**|**Structure-Invariant Range-Visual-Inertial Odometry**|Ivan Alberico et.al.|[2409.04633v1](http://arxiv.org/abs/2409.04633v1)|null| 14 | |**2024-09-02**|**Online One-Dimensional Magnetic Field SLAM with Loop-Closure Detection**|Manon Kok et.al.|[2409.01091v1](http://arxiv.org/abs/2409.01091v1)|null| 15 | |**2024-09-02**|**Robust Vehicle Localization and Tracking in Rain using Street Maps**|Yu Xiang Tan et.al.|[2409.01038v1](http://arxiv.org/abs/2409.01038v1)|[link](https://gitlab.com/marvl/map-fusion)| 16 | |**2024-09-01**|**DSLO: Deep Sequence LiDAR Odometry Based on Inconsistent Spatio-temporal Propagation**|Huixin Zhang et.al.|[2409.00744v1](http://arxiv.org/abs/2409.00744v1)|[link](https://github.com/irmvlab/dslo)| 17 | |**2024-08-30**|**Efficient Camera Exposure Control for Visual Odometry via Deep Reinforcement Learning**|Shuyang Zhang et.al.|[2408.17005v1](http://arxiv.org/abs/2408.17005v1)|[link](https://github.com/shuyanguni/drl_exposure_ctrl)| 18 | |**2024-08-29**|**Creating a Segmented Pointcloud of Grapevines by Combining Multiple Viewpoints Through Visual Odometry**|Michael Adlerstein et.al.|[2408.16472v1](http://arxiv.org/abs/2408.16472v1)|null| 19 | |**2024-08-28**|**Single-Photon 3D Imaging with Equi-Depth Photon Histograms**|Kaustubh Sadekar et.al.|[2408.16150v1](http://arxiv.org/abs/2408.16150v1)|null| 20 | |**2024-08-28**|**Str-L Pose: Integrating Point and Structured Line for Relative Pose Estimation in Dual-Graph**|Zherong Zhang et.al.|[2408.15750v1](http://arxiv.org/abs/2408.15750v1)|null| 21 | |**2024-08-28**|**ES-PTAM: Event-based Stereo Parallel Tracking and Mapping**|Suman Ghosh et.al.|[2408.15605v1](http://arxiv.org/abs/2408.15605v1)|[link](https://github.com/tub-rip/es-ptam)| 22 | |**2024-08-26**|**FAST-LIVO2: Fast, Direct LiDAR-Inertial-Visual Odometry**|Chunran Zheng et.al.|[2408.14035v2](http://arxiv.org/abs/2408.14035v2)|[link](https://github.com/hku-mars/fast-livo2)| 23 | |**2024-08-21**|**Optimized Kalman Filter based State Estimation and Height Control in Hopping Robots**|Samuel Burns et.al.|[2408.11978v1](http://arxiv.org/abs/2408.11978v1)|null| 24 | |**2024-08-21**|**Informed, Constrained, Aligned: A Field Analysis on Degeneracy-aware Point Cloud Registration in the Wild**|Turcan Tuna et.al.|[2408.11809v1](http://arxiv.org/abs/2408.11809v1)|null| 25 | |**2024-08-21**|**AS-LIO: Spatial Overlap Guided Adaptive Sliding Window LiDAR-Inertial Odometry for Aggressive FOV Variation**|Tianxiang Zhang et.al.|[2408.11426v1](http://arxiv.org/abs/2408.11426v1)|null| 26 | |**2024-08-12**|**EqNIO: Subequivariant Neural Inertial Odometry**|Royina Karegoudra Jayanth et.al.|[2408.06321v2](http://arxiv.org/abs/2408.06321v2)|null| 27 | |**2024-08-12**|**CAD-Mesher: A Convenient, Accurate, Dense Mesh-based Mapping Module in SLAM for Dynamic Environments**|Yanpeng Jia et.al.|[2408.05981v1](http://arxiv.org/abs/2408.05981v1)|null| 28 | |**2024-08-11**|**A robust baro-radar-inertial odometry m-estimator for multicopter navigation in cities and forests**|Rik Girod et.al.|[2408.05764v1](http://arxiv.org/abs/2408.05764v1)|[link](https://github.com/ethz-asl/rio)| 29 | |**2024-08-11**|**MR-ULINS: A Tightly-Coupled UWB-LiDAR-Inertial Estimator with Multi-Epoch Outlier Rejection**|Tisheng Zhang et.al.|[2408.05719v1](http://arxiv.org/abs/2408.05719v1)|null| 30 | |**2024-08-09**|**CTE-MLO: Continuous-time and Efficient Multi-LiDAR Odometry with Localizability-aware Point Cloud Sampling**|Hongming Shen et.al.|[2408.04901v1](http://arxiv.org/abs/2408.04901v1)|null| 31 | |**2024-08-07**|**Towards Real-Time Gaussian Splatting: Accelerating 3DGS through Photometric SLAM**|Yan Song Hu et.al.|[2408.03825v1](http://arxiv.org/abs/2408.03825v1)|null| 32 | |**2024-08-06**|**BodySLAM: A Generalized Monocular Visual SLAM Framework for Surgical Applications**|G. Manni et.al.|[2408.03078v1](http://arxiv.org/abs/2408.03078v1)|[link](https://github.com/GuidoManni/BodySLAM)| 33 | |**2024-08-05**|**GAReT: Cross-view Video Geolocalization with Adapters and Auto-Regressive Transformers**|Manu S Pillai et.al.|[2408.02840v1](http://arxiv.org/abs/2408.02840v1)|[link](https://github.com/manupillai308/garet)| 34 | |**2024-08-05**|**CMR-Agent: Learning a Cross-Modal Agent for Iterative Image-to-Point Cloud Registration**|Gongxin Yao et.al.|[2408.02394v1](http://arxiv.org/abs/2408.02394v1)|null| 35 | |**2024-08-05**|**MaFreeI2P: A Matching-Free Image-to-Point Cloud Registration Paradigm with Active Camera Pose Retrieval**|Gongxin Yao et.al.|[2408.02392v1](http://arxiv.org/abs/2408.02392v1)|null| 36 | |**2024-08-03**|**Deep Patch Visual SLAM**|Lahav Lipson et.al.|[2408.01654v1](http://arxiv.org/abs/2408.01654v1)|[link](https://github.com/princeton-vl/dpvo)| 37 | |**2024-08-01**|**Collecting Larg-Scale Robotic Datasets on a High-Speed Mobile Platform**|Yuxin Lin et.al.|[2408.00545v1](http://arxiv.org/abs/2408.00545v1)|null| 38 | |**2024-07-30**|**ATI-CTLO:Adaptive Temporal Interval-based Continuous-Time LiDAR-Only Odometry**|Bo Zhou et.al.|[2407.20619v2](http://arxiv.org/abs/2407.20619v2)|null| 39 | |**2024-07-29**|**A flexible framework for accurate LiDAR odometry, map manipulation, and localization**|José Luis Blanco-Claraco et.al.|[2407.20465v1](http://arxiv.org/abs/2407.20465v1)|[link](https://github.com/molaorg/mola)| 40 | |**2024-07-29**|**Correspondence-Free SE(3) Point Cloud Registration in RKHS via Unsupervised Equivariant Learning**|Ray Zhang et.al.|[2407.20223v1](http://arxiv.org/abs/2407.20223v1)|null| 41 | 42 | ### SLAM 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2024-09-11**|**Equivariant Filter for Tightly Coupled LiDAR-Inertial Odometry**|Anbo Tao et.al.|[2409.06948v1](http://arxiv.org/abs/2409.06948v1)|null| 46 | |**2024-09-10**|**Technical Report of Mobile Manipulator Robot for Industrial Environments**|Erfan Amoozad Khalili et.al.|[2409.06693v1](http://arxiv.org/abs/2409.06693v1)|null| 47 | |**2024-09-08**|**Heterogeneous LiDAR Dataset for Benchmarking Robust Localization in Diverse Degenerate Scenarios**|Zhiqiang Chen et.al.|[2409.04961v2](http://arxiv.org/abs/2409.04961v2)|null| 48 | |**2024-09-05**|**FLAF: Focal Line and Feature-constrained Active View Planning for Visual Teach and Repeat**|Changfei Fu et.al.|[2409.03457v2](http://arxiv.org/abs/2409.03457v2)|null| 49 | |**2024-09-03**|**Integration of Augmented Reality and Mobile Robot Indoor SLAM for Enhanced Spatial Awareness**|Michael D. Friske et.al.|[2409.01915v1](http://arxiv.org/abs/2409.01915v1)|null| 50 | |**2024-09-03**|**Explicit Second-order LiDAR Bundle Adjustment Algorithm Using Mean Squared Group Metric**|Tingchen Ma et.al.|[2409.01856v1](http://arxiv.org/abs/2409.01856v1)|null| 51 | |**2024-09-02**|**Saying goodbyes to rotating your phone: Magnetometer calibration during SLAM**|Ilari Vallivaara et.al.|[2409.01242v1](http://arxiv.org/abs/2409.01242v1)|null| 52 | |**2024-09-02**|**Online One-Dimensional Magnetic Field SLAM with Loop-Closure Detection**|Manon Kok et.al.|[2409.01091v1](http://arxiv.org/abs/2409.01091v1)|null| 53 | |**2024-08-31**|**UDGS-SLAM : UniDepth Assisted Gaussian Splatting for Monocular SLAM**|Mostafa Mansour et.al.|[2409.00362v1](http://arxiv.org/abs/2409.00362v1)|null| 54 | |**2024-08-30**|**Augmented Reality without Borders: Achieving Precise Localization Without Maps**|Albert Gassol Puigjaner et.al.|[2408.17373v3](http://arxiv.org/abs/2408.17373v3)|null| 55 | |**2024-08-28**|**BIM-SLAM: Integrating BIM Models in Multi-session SLAM for Lifelong Mapping using 3D LiDAR**|Miguel Arturo Vega Torres et.al.|[2408.15870v1](http://arxiv.org/abs/2408.15870v1)|[link](https://github.com/MigVega/SLAM2REF)| 56 | |**2024-08-28**|**Addressing the challenges of loop detection in agricultural environments**|Nicolás Soncini et.al.|[2408.15761v2](http://arxiv.org/abs/2408.15761v2)|[link](https://github.com/CIFASIS/StereoLoopDetector)| 57 | |**2024-08-28**|**ES-PTAM: Event-based Stereo Parallel Tracking and Mapping**|Suman Ghosh et.al.|[2408.15605v1](http://arxiv.org/abs/2408.15605v1)|[link](https://github.com/tub-rip/es-ptam)| 58 | |**2024-08-28**|**PointEMRay: A Novel Efficient SBR Framework on Point Based Geometry**|Kaiqiao Yang et.al.|[2408.15583v1](http://arxiv.org/abs/2408.15583v1)|null| 59 | |**2024-08-27**|**Active Semantic Mapping and Pose Graph Spectral Analysis for Robot Exploration**|Rongge Zhang et.al.|[2408.14726v2](http://arxiv.org/abs/2408.14726v2)|[link](https://github.com/BohemianRhapsodyz/semantic_exploration)| 60 | |**2024-08-26**|**FAST-LIVO2: Fast, Direct LiDAR-Inertial-Visual Odometry**|Chunran Zheng et.al.|[2408.14035v2](http://arxiv.org/abs/2408.14035v2)|[link](https://github.com/hku-mars/fast-livo2)| 61 | |**2024-08-26**|**A Survey on Reinforcement Learning Applications in SLAM**|Mohammad Dehghani Tezerjani et.al.|[2408.14518v1](http://arxiv.org/abs/2408.14518v1)|null| 62 | |**2024-08-21**|**Informed, Constrained, Aligned: A Field Analysis on Degeneracy-aware Point Cloud Registration in the Wild**|Turcan Tuna et.al.|[2408.11809v1](http://arxiv.org/abs/2408.11809v1)|null| 63 | |**2024-08-21**|**LiFCal: Online Light Field Camera Calibration via Bundle Adjustment**|Aymeric Fleith et.al.|[2408.11682v1](http://arxiv.org/abs/2408.11682v1)|null| 64 | |**2024-08-21**|**Enhanced Visual SLAM for Collision-free Driving with Lightweight Autonomous Cars**|Zhihao Lin et.al.|[2408.11582v1](http://arxiv.org/abs/2408.11582v1)|null| 65 | |**2024-08-21**|**RaNDT SLAM: Radar SLAM Based on Intensity-Augmented Normal Distributions Transform**|Maximilian Hilger et.al.|[2408.11576v1](http://arxiv.org/abs/2408.11576v1)|[link](https://github.com/igmr-rwth/randt-slam)| 66 | |**2024-08-21**|**Reflex-Based Open-Vocabulary Navigation without Prior Knowledge Using Omnidirectional Camera and Multiple Vision-Language Models**|Kento Kawaharazuka et.al.|[2408.11380v1](http://arxiv.org/abs/2408.11380v1)|null| 67 | |**2024-08-19**|**LoopSplat: Loop Closure by Registering 3D Gaussian Splats**|Liyuan Zhu et.al.|[2408.10154v2](http://arxiv.org/abs/2408.10154v2)|[link](https://github.com/GradientSpaces/LoopSplat)| 68 | |**2024-08-19**|**Quantitative 3D Map Accuracy Evaluation Hardware and Algorithm for LiDAR(-Inertial) SLAM**|Sanghyun Hahn et.al.|[2408.09727v1](http://arxiv.org/abs/2408.09727v1)|[link](https://github.com/sangwoojung98/3d_map_evaluation)| 69 | |**2024-08-17**|**GSLAMOT: A Tracklet and Query Graph-based Simultaneous Locating, Mapping, and Multiple Object Tracking System**|Shuo Wang et.al.|[2408.09191v1](http://arxiv.org/abs/2408.09191v1)|null| 70 | |**2024-08-15**|**GOReloc: Graph-based Object-Level Relocalization for Visual SLAM**|Yutong Wang et.al.|[2408.07917v1](http://arxiv.org/abs/2408.07917v1)|[link](https://github.com/yutongwangbit/goreloc)| 71 | |**2024-08-14**|**Inverse k-visibility for RSSI-based Indoor Geometric Mapping**|Junseo Kim et.al.|[2408.07757v1](http://arxiv.org/abs/2408.07757v1)|null| 72 | |**2024-08-14**|**Narrowing your FOV with SOLiD: Spatially Organized and Lightweight Global Descriptor for FOV-constrained LiDAR Place Recognition**|Hogyun Kim et.al.|[2408.07330v2](http://arxiv.org/abs/2408.07330v2)|[link](https://github.com/sparolab/solid)| 73 | |**2024-08-12**|**CAD-Mesher: A Convenient, Accurate, Dense Mesh-based Mapping Module in SLAM for Dynamic Environments**|Yanpeng Jia et.al.|[2408.05981v1](http://arxiv.org/abs/2408.05981v1)|null| 74 | |**2024-08-10**|**Visual SLAM with 3D Gaussian Primitives and Depth Priors Enabling Novel View Synthesis**|Zhongche Qu et.al.|[2408.05635v2](http://arxiv.org/abs/2408.05635v2)|null| 75 | -------------------------------------------------------------------------------- /database/storage/storage_2024-10-09.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2024-10-09 21:15:05 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VIO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2024-10-07**|**Real-Time Truly-Coupled Lidar-Inertial Motion Correction and Spatiotemporal Dynamic Object Detection**|Cedric Le Gentil et.al.|[2410.05152v1](http://arxiv.org/abs/2410.05152v1)|null| 12 | |**2024-10-06**|**Mode-GS: Monocular Depth Guided Anchored 3D Gaussian Splatting for Robust Ground-View Scene Rendering**|Yonghan Lee et.al.|[2410.04646v1](http://arxiv.org/abs/2410.04646v1)|null| 13 | |**2024-10-06**|**Liquid-Droplet Coalescence: CNN-based Reconstruction of Flow Fields from Concentration Fields**|Vasanth Kumar Babu et.al.|[2410.04451v1](http://arxiv.org/abs/2410.04451v1)|null| 14 | |**2024-10-05**|**Retraction of levitating drops**|Kindness Isukwem et.al.|[2410.04115v1](http://arxiv.org/abs/2410.04115v1)|null| 15 | |**2024-10-05**|**First-principles study of the energetics and the local chemical ordering of tungsten-based alloys**|Yichen Qian et.al.|[2410.03998v1](http://arxiv.org/abs/2410.03998v1)|null| 16 | |**2024-10-04**|**Universal Global State Estimation for Inertial Navigation Systems**|Sifeddine Benahmed et.al.|[2410.03846v1](http://arxiv.org/abs/2410.03846v1)|null| 17 | |**2024-10-04**|**Enhancement to Fusion Reactivity in Sheared Flows**|Henry Fetsch et.al.|[2410.03590v1](http://arxiv.org/abs/2410.03590v1)|null| 18 | |**2024-10-04**|**Dam break of viscoplastic elliptical objects**|Kindness Isukwem et.al.|[2410.03402v1](http://arxiv.org/abs/2410.03402v1)|null| 19 | |**2024-10-04**|**Applicability criteria of proper charge neutrality and special relativistic MHD models extended by two-fluid effects**|Shutaro Yoshino et.al.|[2410.03317v1](http://arxiv.org/abs/2410.03317v1)|null| 20 | |**2024-10-04**|**Extending Kolmogorov Theory to Polymeric Turbulence**|Alessandro Chiarini et.al.|[2410.03237v1](http://arxiv.org/abs/2410.03237v1)|null| 21 | |**2024-10-03**|**LiDAR Inertial Odometry And Mapping Using Learned Registration-Relevant Features**|Zihao Dong et.al.|[2410.02961v1](http://arxiv.org/abs/2410.02961v1)|null| 22 | |**2024-10-03**|**Prediabetes detection in unconstrained conditions using wearable sensors**|Dimitra Tatli et.al.|[2410.02692v1](http://arxiv.org/abs/2410.02692v1)|null| 23 | |**2024-10-03**|**Capturing complex hand movements and object interactions using machine learning-powered stretchable smart textile gloves**|Arvin Tashakori et.al.|[2410.02221v1](http://arxiv.org/abs/2410.02221v1)|[link](https://github.com/arvintashakori/SmartTextileGlove)| 24 | |**2024-10-02**|**Burn Propagation in Magnetized High-Yield Inertial Fusion**|S. T. O'Neill et.al.|[2410.02063v1](http://arxiv.org/abs/2410.02063v1)|null| 25 | |**2024-10-02**|**Decentralized Collaborative Inertial Tracking**|Alpha Diallo et.al.|[2410.01982v1](http://arxiv.org/abs/2410.01982v1)|null| 26 | |**2024-10-02**|**Adaptive Invariant Extended Kalman Filter with Noise Covariance Tuning for Attitude Estimation**|Yash Pandey et.al.|[2410.01958v1](http://arxiv.org/abs/2410.01958v1)|null| 27 | |**2024-10-02**|**Local Peculiar Motions in McVittie and LTB Spacetimes**|Masoud Molaei et.al.|[2410.01758v1](http://arxiv.org/abs/2410.01758v1)|null| 28 | |**2024-10-02**|**ReFeree: Radar-Based Lightweight and Robust Localization using Feature and Free space**|Hogyun Kim et.al.|[2410.01325v1](http://arxiv.org/abs/2410.01325v1)|null| 29 | |**2024-10-02**|**A semiclassical non-adiabatic phase-space approach to molecular translations and rotations: A new picture of surface hopping and electronic inertial effects**|Xuezhi Bian et.al.|[2410.01156v1](http://arxiv.org/abs/2410.01156v1)|null| 30 | |**2024-10-01**|**M2P2: A Multi-Modal Passive Perception Dataset for Off-Road Mobility in Extreme Low-Light Conditions**|Aniket Datar et.al.|[2410.01105v1](http://arxiv.org/abs/2410.01105v1)|null| 31 | |**2024-10-01**|**Three-Operator Splitting Method with Two-Step Inertial Extrapolation**|Olaniyi S. Iyiola et.al.|[2410.01099v1](http://arxiv.org/abs/2410.01099v1)|null| 32 | |**2024-09-30**|**Evaluating the Impact of Convolutional Neural Network Layer Depth on the Enhancement of Inertial Navigation System Solutions**|Mohammed Aftatah et.al.|[2409.20488v1](http://arxiv.org/abs/2409.20488v1)|null| 33 | |**2024-09-30**|**Assessing small accelerations using a bosonic Josephson junction**|Rhombik Roy et.al.|[2409.20203v1](http://arxiv.org/abs/2409.20203v1)|null| 34 | |**2024-09-29**|**CELLmap: Enhancing LiDAR SLAM through Elastic and Lightweight Spherical Map Representation**|Yifan Duan et.al.|[2409.19597v1](http://arxiv.org/abs/2409.19597v1)|null| 35 | |**2024-09-27**|**Gradient-free Decoder Inversion in Latent Diffusion Models**|Seongmin Hong et.al.|[2409.18442v1](http://arxiv.org/abs/2409.18442v1)|null| 36 | |**2024-09-27**|**Get It For Free: Radar Segmentation without Expert Labels and Its Application in Odometry and Localization**|Siru Li et.al.|[2409.18434v3](http://arxiv.org/abs/2409.18434v3)|null| 37 | |**2024-09-26**|**MMDVS-LF: A Multi-Modal Dynamic-Vision-Sensor Line Following Dataset**|Felix Resch et.al.|[2409.18038v1](http://arxiv.org/abs/2409.18038v1)|null| 38 | |**2024-09-26**|**Swarm-LIO2: Decentralized, Efficient LiDAR-inertial Odometry for UAV Swarms**|Fangcheng Zhu et.al.|[2409.17798v1](http://arxiv.org/abs/2409.17798v1)|null| 39 | |**2024-09-26**|**The global flow state in a precessing cylinder**|André Giesecke et.al.|[2409.17789v1](http://arxiv.org/abs/2409.17789v1)|null| 40 | |**2024-09-26**|**Neural Implicit Representation for Highly Dynamic LiDAR Mapping and Odometry**|Qi Zhang et.al.|[2409.17729v1](http://arxiv.org/abs/2409.17729v1)|null| 41 | 42 | ### SLAM 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2024-10-07**|**Enhanced Multi-Robot SLAM System with Cross-Validation Matching and Exponential Threshold Keyframe Selection**|Ang He et.al.|[2410.05017v1](http://arxiv.org/abs/2410.05017v1)|null| 46 | |**2024-10-05**|**A Framework for Reproducible Benchmarking and Performance Diagnosis of SLAM Systems**|Nikola Radulov et.al.|[2410.04242v1](http://arxiv.org/abs/2410.04242v1)|null| 47 | |**2024-10-05**|**High-Speed Stereo Visual SLAM for Low-Powered Computing Devices**|Ashish Kumar et.al.|[2410.04090v1](http://arxiv.org/abs/2410.04090v1)|null| 48 | |**2024-10-04**|**Estimating Body and Hand Motion in an Ego-sensed World**|Brent Yi et.al.|[2410.03665v1](http://arxiv.org/abs/2410.03665v1)|null| 49 | |**2024-10-04**|**EvenNICER-SLAM: Event-based Neural Implicit Encoding SLAM**|Shi Chen et.al.|[2410.03812v1](http://arxiv.org/abs/2410.03812v1)|null| 50 | |**2024-10-03**|**LiDAR Inertial Odometry And Mapping Using Learned Registration-Relevant Features**|Zihao Dong et.al.|[2410.02961v1](http://arxiv.org/abs/2410.02961v1)|null| 51 | |**2024-10-02**|**ReFeree: Radar-Based Lightweight and Robust Localization using Feature and Free space**|Hogyun Kim et.al.|[2410.01325v1](http://arxiv.org/abs/2410.01325v1)|null| 52 | |**2024-10-01**|**Under Pressure: Altimeter-Aided ICP for 3D Maps Consistency**|William Dubois et.al.|[2410.00758v1](http://arxiv.org/abs/2410.00758v1)|null| 53 | |**2024-10-01**|**CaRtGS: Computational Alignment for Real-Time Gaussian Splatting SLAM**|Dapeng Feng et.al.|[2410.00486v2](http://arxiv.org/abs/2410.00486v2)|null| 54 | |**2024-09-30**|**Additively Manufactured Open-Source Quadruped Robots for Multi-Robot SLAM Applications**|Zachary Fuge et.al.|[2410.00122v1](http://arxiv.org/abs/2410.00122v1)|null| 55 | |**2024-09-30**|**Direct Multipath-Based SLAM**|Mingchao Liang et.al.|[2409.20552v1](http://arxiv.org/abs/2409.20552v1)|null| 56 | |**2024-09-30**|**Robust Gaussian Splatting SLAM by Leveraging Loop Closure**|Zunjie Zhu et.al.|[2409.20111v1](http://arxiv.org/abs/2409.20111v1)|null| 57 | |**2024-09-30**|**DynORecon: Dynamic Object Reconstruction for Navigation**|Yiduo Wang et.al.|[2409.19928v1](http://arxiv.org/abs/2409.19928v1)|null| 58 | |**2024-09-29**|**CELLmap: Enhancing LiDAR SLAM through Elastic and Lightweight Spherical Map Representation**|Yifan Duan et.al.|[2409.19597v1](http://arxiv.org/abs/2409.19597v1)|null| 59 | |**2024-09-29**|**CoT-ST: Enhancing LLM-based Speech Translation with Multimodal Chain-of-Thought**|Yexing Du et.al.|[2409.19510v1](http://arxiv.org/abs/2409.19510v1)|[link](https://github.com/X-LANCE/SLAM-LLM)| 60 | |**2024-09-29**|**Fast-UMI: A Scalable and Hardware-Independent Universal Manipulation Interface**|Ziniu Wu et.al.|[2409.19499v1](http://arxiv.org/abs/2409.19499v1)|null| 61 | |**2024-09-27**|**Royal Reveals: LiDAR Mapping of Kronborg Castle, Echoes of Hamlet's Halls**|Leon Davies et.al.|[2409.18752v1](http://arxiv.org/abs/2409.18752v1)|null| 62 | |**2024-09-26**|**BlinkTrack: Feature Tracking over 100 FPS via Events and Images**|Yichen Shen et.al.|[2409.17981v1](http://arxiv.org/abs/2409.17981v1)|null| 63 | |**2024-09-26**|**Neural Implicit Representation for Highly Dynamic LiDAR Mapping and Odometry**|Qi Zhang et.al.|[2409.17729v1](http://arxiv.org/abs/2409.17729v1)|null| 64 | |**2024-09-26**|**Event-based Stereo Depth Estimation: A Survey**|Suman Ghosh et.al.|[2409.17680v1](http://arxiv.org/abs/2409.17680v1)|null| 65 | |**2024-09-25**|**Efficient Submap-based Autonomous MAV Exploration using Visual-Inertial SLAM Configurable for LiDARs or Depth Cameras**|Sotiris Papatheodorou et.al.|[2409.16972v1](http://arxiv.org/abs/2409.16972v1)|null| 66 | |**2024-09-25**|**Go-SLAM: Grounded Object Segmentation and Localization with Gaussian Splatting SLAM**|Phu Pham et.al.|[2409.16944v1](http://arxiv.org/abs/2409.16944v1)|null| 67 | |**2024-09-25**|**Inline Photometrically Calibrated Hybrid Visual SLAM**|Nicolas Abboud et.al.|[2409.16810v1](http://arxiv.org/abs/2409.16810v1)|[link](https://github.com/AUBVRL/HSLAM_docker)| 68 | |**2024-09-25**|**Topological SLAM in colonoscopies leveraging deep features and topological priors**|Javier Morlana et.al.|[2409.16806v1](http://arxiv.org/abs/2409.16806v1)|[link](https://github.com/endomapper/colonslam)| 69 | |**2024-09-25**|**Robo-Platform: A Robotic System for Recording Sensors and Controlling Robots**|Masoud Dayani Najafabadi et.al.|[2409.16595v1](http://arxiv.org/abs/2409.16595v1)|[link](https://github.com/m-dayani/robo-platform)| 70 | |**2024-09-25**|**Task-driven SLAM Benchmarking**|Yanwei Du et.al.|[2409.16573v1](http://arxiv.org/abs/2409.16573v1)|null| 71 | |**2024-09-24**|**SoMaSLAM: 2D Graph SLAM for Sparse Range Sensing with Soft Manhattan World Constraints**|Jeahn Han et.al.|[2409.15736v1](http://arxiv.org/abs/2409.15736v1)|null| 72 | |**2024-09-23**|**Spectral Graph Theoretic Methods for Enhancing Network Robustness in Robot Localization**|Neelkamal Somisetty et.al.|[2409.15506v1](http://arxiv.org/abs/2409.15506v1)|null| 73 | |**2024-09-22**|**SPAQ-DL-SLAM: Towards Optimizing Deep Learning-based SLAM for Resource-Constrained Embedded Platforms**|Niraj Pudasaini et.al.|[2409.14515v1](http://arxiv.org/abs/2409.14515v1)|null| 74 | |**2024-09-21**|**Point Cloud Structural Similarity-based Underwater Sonar Loop Detection**|Donghwi Jung et.al.|[2409.14020v1](http://arxiv.org/abs/2409.14020v1)|[link](https://github.com/donghwijung/point_cloud_structural_similarity_based_underwater_sonar_loop_detection)| 75 | -------------------------------------------------------------------------------- /database/storage/storage_2025-03-18.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2025-03-18 21:21:19 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### SLAM 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2025-03-17**|**Digital Beamforming Enhanced Radar Odometry**|Jingqi Jiang et.al.|[2503.13252v1](http://arxiv.org/abs/2503.13252v1)|null| 12 | |**2025-03-17**|**Dynamic-Dark SLAM: RGB-Thermal Cooperative Robot Vision Strategy for Multi-Person Tracking in Both Well-Lit and Low-Light Scenes**|Tatsuro Sakai et.al.|[2503.12768v1](http://arxiv.org/abs/2503.12768v1)|null| 13 | |**2025-03-16**|**KISS-SLAM: A Simple, Robust, and Accurate 3D LiDAR SLAM System With Enhanced Generalization Capabilities**|Tiziano Guadagnino et.al.|[2503.12660v1](http://arxiv.org/abs/2503.12660v1)|null| 14 | |**2025-03-16**|**Deblur Gaussian Splatting SLAM**|Francesco Girlanda et.al.|[2503.12572v1](http://arxiv.org/abs/2503.12572v1)|null| 15 | |**2025-03-16**|**M2UD: A Multi-model, Multi-scenario, Uneven-terrain Dataset for Ground Robot with Localization and Mapping Evaluation**|Yanpeng Jia et.al.|[2503.12387v1](http://arxiv.org/abs/2503.12387v1)|null| 16 | |**2025-03-15**|**DynaGSLAM: Real-Time Gaussian-Splatting SLAM for Online Rendering, Tracking, Motion Predictions of Moving Objects in Dynamic Scenes**|Runfa Blark Li et.al.|[2503.11979v1](http://arxiv.org/abs/2503.11979v1)|null| 17 | |**2025-03-14**|**AQUA-SLAM: Tightly-Coupled Underwater Acoustic-Visual-Inertial SLAM with Sensor Calibration**|Shida Xu et.al.|[2503.11420v1](http://arxiv.org/abs/2503.11420v1)|null| 18 | |**2025-03-14**|**NF-SLAM: Effective, Normalizing Flow-supported Neural Field representations for object-level visual SLAM in automotive applications**|Li Cui et.al.|[2503.11199v1](http://arxiv.org/abs/2503.11199v1)|null| 19 | |**2025-03-14**|**Leveraging Semantic Graphs for Efficient and Robust LiDAR SLAM**|Neng Wang et.al.|[2503.11145v1](http://arxiv.org/abs/2503.11145v1)|null| 20 | |**2025-03-13**|**Rapidly Converging Time-Discounted Ergodicity on Graphs for Active Inspection of Confined Spaces**|Benjamin Wong et.al.|[2503.10853v1](http://arxiv.org/abs/2503.10853v1)|null| 21 | |**2025-03-13**|**OSMa-Bench: Evaluating Open Semantic Mapping Under Varying Lighting Conditions**|Maxim Popov et.al.|[2503.10331v1](http://arxiv.org/abs/2503.10331v1)|null| 22 | |**2025-03-12**|**Online Language Splatting**|Saimouli Katragadda et.al.|[2503.09447v1](http://arxiv.org/abs/2503.09447v1)|null| 23 | |**2025-03-12**|**MonoSLAM: Robust Monocular SLAM with Global Structure Optimization**|Bingzheng Jiang et.al.|[2503.09296v1](http://arxiv.org/abs/2503.09296v1)|null| 24 | |**2025-03-11**|**Keypoint Detection and Description for Raw Bayer Images**|Jiakai Lin et.al.|[2503.08673v1](http://arxiv.org/abs/2503.08673v1)|null| 25 | |**2025-03-11**|**GigaSLAM: Large-Scale Monocular SLAM with Hierachical Gaussian Splats**|Kai Deng et.al.|[2503.08071v1](http://arxiv.org/abs/2503.08071v1)|null| 26 | |**2025-03-10**|**POp-GS: Next Best View in 3D-Gaussian Splatting with P-Optimality**|Joey Wilson et.al.|[2503.07819v1](http://arxiv.org/abs/2503.07819v1)|null| 27 | |**2025-03-10**|**AirSwarm: Enabling Cost-Effective Multi-UAV Research with COTS drones**|Xiaowei Li et.al.|[2503.06890v1](http://arxiv.org/abs/2503.06890v1)|[link](https://github.com/vvEverett/tello_ros)| 28 | |**2025-03-08**|**HIPPO-MAT: Decentralized Task Allocation Using GraphSAGE and Multi-Agent Deep Reinforcement Learning**|Lavanya Ratnabala et.al.|[2503.07662v1](http://arxiv.org/abs/2503.07662v1)|null| 29 | |**2025-03-08**|**InfoFusion Controller: Informed TRRT Star with Mutual Information based on Fusion of Pure Pursuit and MPC for Enhanced Path Planning**|Seongjun Choi et.al.|[2503.06010v1](http://arxiv.org/abs/2503.06010v1)|[link](https://github.com/drawingprocess/infofusioncontroller)| 30 | |**2025-03-07**|**Adaptive-LIO: Enhancing Robustness and Precision through Environmental Adaptation in LiDAR Inertial Odometry**|Chengwei Zhao et.al.|[2503.05077v1](http://arxiv.org/abs/2503.05077v1)|[link](https://github.com/chengwei0427/adaptive_lio)| 31 | |**2025-03-06**|**On the Connection Between Magnetic-Field Odometry Aided Inertial Navigation and Magnetic-Field SLAM**|Isaac Skog et.al.|[2503.04286v1](http://arxiv.org/abs/2503.04286v1)|null| 32 | |**2025-03-06**|**DVM-SLAM: Decentralized Visual Monocular Simultaneous Localization and Mapping for Multi-Agent Systems**|Joshua Bird et.al.|[2503.04126v1](http://arxiv.org/abs/2503.04126v1)|null| 33 | |**2025-03-05**|**Equivariant Filter Design for Range-only SLAM**|Yixiao Ge et.al.|[2503.03973v1](http://arxiv.org/abs/2503.03973v1)|null| 34 | |**2025-03-05**|**OpenGV 2.0: Motion prior-assisted calibration and SLAM with vehicle-mounted surround-view systems**|Kun Huang et.al.|[2503.03230v1](http://arxiv.org/abs/2503.03230v1)|null| 35 | |**2025-03-05**|**Distributed Certifiably Correct Range-Aided SLAM**|Alexander Thoms et.al.|[2503.03192v1](http://arxiv.org/abs/2503.03192v1)|[link](https://github.com/adthoms/dcora)| 36 | |**2025-03-04**|**Monocular visual simultaneous localization and mapping: (r)evolution from geometry to deep learning-based pipelines**|Olaya Alvarez-Tunon et.al.|[2503.02955v1](http://arxiv.org/abs/2503.02955v1)|[link](https://github.com/olayasturias/monocular_visual_slam_survey)| 37 | |**2025-03-04**|**Introspective Loop Closure for SLAM with 4D Imaging Radar**|Maximilian Hilger et.al.|[2503.02383v1](http://arxiv.org/abs/2503.02383v1)|null| 38 | |**2025-03-04**|**DQO-MAP: Dual Quadrics Multi-Object mapping with Gaussian Splatting**|Haoyuan Li et.al.|[2503.02223v1](http://arxiv.org/abs/2503.02223v1)|[link](https://github.com/lihaoy-ux/dqo-map)| 39 | |**2025-03-03**|**Constraint-Based Modeling of Dynamic Entities in 3D Scene Graphs for Robust SLAM**|Marco Giberna et.al.|[2503.02050v1](http://arxiv.org/abs/2503.02050v1)|null| 40 | |**2025-03-03**|**vS-Graphs: Integrating Visual SLAM and Situational Graphs through Multi-level Scene Understanding**|Ali Tourani et.al.|[2503.01783v1](http://arxiv.org/abs/2503.01783v1)|null| 41 | 42 | ### VIO 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2025-03-17**|**Digital Beamforming Enhanced Radar Odometry**|Jingqi Jiang et.al.|[2503.13252v1](http://arxiv.org/abs/2503.13252v1)|null| 46 | |**2025-03-17**|**Indoor Fusion Positioning Based on "IMU-Ultrasonic-UWB" and Factor Graph Optimization Method**|Fengyun Zhang et.al.|[2503.12726v1](http://arxiv.org/abs/2503.12726v1)|null| 47 | |**2025-03-16**|**KISS-SLAM: A Simple, Robust, and Accurate 3D LiDAR SLAM System With Enhanced Generalization Capabilities**|Tiziano Guadagnino et.al.|[2503.12660v1](http://arxiv.org/abs/2503.12660v1)|null| 48 | |**2025-03-16**|**A Plug-and-Play Learning-based IMU Bias Factor for Robust Visual-Inertial Odometry**|Yang Yi et.al.|[2503.12527v1](http://arxiv.org/abs/2503.12527v1)|null| 49 | |**2025-03-15**|**MUSE: A Real-Time Multi-Sensor State Estimator for Quadruped Robots**|Ylenia Nisticò et.al.|[2503.12101v1](http://arxiv.org/abs/2503.12101v1)|null| 50 | |**2025-03-14**|**In Shift and In Variance: Assessing the Robustness of HAR Deep Learning Models against Variability**|Azhar Ali Khaked et.al.|[2503.11466v1](http://arxiv.org/abs/2503.11466v1)|null| 51 | |**2025-03-14**|**AQUA-SLAM: Tightly-Coupled Underwater Acoustic-Visual-Inertial SLAM with Sensor Calibration**|Shida Xu et.al.|[2503.11420v1](http://arxiv.org/abs/2503.11420v1)|null| 52 | |**2025-03-14**|**Inertial manifolds via spatial averaging: a control-theoretic perspective**|Mikhail Anikushin et.al.|[2503.11161v1](http://arxiv.org/abs/2503.11161v1)|null| 53 | |**2025-03-14**|**Leveraging Semantic Graphs for Efficient and Robust LiDAR SLAM**|Neng Wang et.al.|[2503.11145v1](http://arxiv.org/abs/2503.11145v1)|null| 54 | |**2025-03-14**|**Fast and Robust Localization for Humanoid Soccer Robot via Iterative Landmark Matching**|Ruochen Hou et.al.|[2503.11020v1](http://arxiv.org/abs/2503.11020v1)|null| 55 | |**2025-03-13**|**Modelling subsonic turbulence with SPH-EXA**|Rubén M. Cabezón et.al.|[2503.10273v1](http://arxiv.org/abs/2503.10273v1)|null| 56 | |**2025-03-13**|**Sagnac interferometer-based noise-free superresolution using phase-controlled quantum erasers**|Byoung S. Ham et.al.|[2503.10101v2](http://arxiv.org/abs/2503.10101v2)|null| 57 | |**2025-03-12**|**Acceleration without photon pair creation**|Sara Kanzi et.al.|[2503.09863v1](http://arxiv.org/abs/2503.09863v1)|null| 58 | |**2025-03-12**|**Degradation-based Energy Management for Microgrids in the Presence of Energy Storage Elements**|Satish Vedula et.al.|[2503.09028v1](http://arxiv.org/abs/2503.09028v1)|null| 59 | |**2025-03-11**|**Hydrodynamics in a villi-patterned channel due to pendular-wave activity**|Rohan Vernekar et.al.|[2503.08852v1](http://arxiv.org/abs/2503.08852v1)|null| 60 | |**2025-03-11**|**Ultrarelativistic outflows in asymmetric magnetic reconnection**|Maricarmen A. Winkler et.al.|[2503.08563v1](http://arxiv.org/abs/2503.08563v1)|null| 61 | |**2025-03-11**|**A Triple-Inertial Accelerated Alternating Optimization Method for Deep Learning Training**|Chengcheng Yan et.al.|[2503.08489v2](http://arxiv.org/abs/2503.08489v2)|null| 62 | |**2025-03-11**|**A forward-reflected-anchored-backward splitting algorithm with double inertial effects for solving non-monotone inclusion problems**|Nam Van Tran et.al.|[2503.08432v1](http://arxiv.org/abs/2503.08432v1)|null| 63 | |**2025-03-11**|**Ev-Layout: A Large-scale Event-based Multi-modal Dataset for Indoor Layout Estimation and Tracking**|Xucheng Guo et.al.|[2503.08370v1](http://arxiv.org/abs/2503.08370v1)|null| 64 | |**2025-03-11**|**Elongated bubble centring and high-viscosity liquids in horizontal gas-liquid slug flow: Empirical analyses and novel theory**|Sean J. Perkins et.al.|[2503.08329v1](http://arxiv.org/abs/2503.08329v1)|null| 65 | |**2025-03-11**|**Reinforcement learning assisted non-reciprocal optomechanical gyroscope**|Qing-Shou Tan et.al.|[2503.08319v1](http://arxiv.org/abs/2503.08319v1)|null| 66 | |**2025-03-11**|**NeRF-VIO: Map-Based Visual-Inertial Odometry with Initialization Leveraging Neural Radiance Fields**|Yanyu Zhang et.al.|[2503.07952v1](http://arxiv.org/abs/2503.07952v1)|null| 67 | |**2025-03-11**|**QLIO: Quantized LiDAR-Inertial Odometry**|Boyang Lou et.al.|[2503.07949v1](http://arxiv.org/abs/2503.07949v1)|[link](https://github.com/luobodan/QLIO)| 68 | |**2025-03-10**|**Trapping and Transport of Inertial Particles in a Taylor-Green Vortex: Effects of Added Mass and History Force**|Prabhash Kumar et.al.|[2503.07480v1](http://arxiv.org/abs/2503.07480v1)|null| 69 | |**2025-03-10**|**COMODO: Cross-Modal Video-to-IMU Distillation for Efficient Egocentric Human Activity Recognition**|Baiyu Chen et.al.|[2503.07259v1](http://arxiv.org/abs/2503.07259v1)|[link](https://github.com/Breezelled/COMODO)| 70 | |**2025-03-10**|**Testing for Markovian character of transfer of fluctuations in solar wind turbulence on kinetic scales**|Dariusz Wójcik et.al.|[2503.07255v1](http://arxiv.org/abs/2503.07255v1)|null| 71 | |**2025-03-10**|**AKF-LIO: LiDAR-Inertial Odometry with Gaussian Map by Adaptive Kalman Filter**|Xupeng Xie et.al.|[2503.06891v1](http://arxiv.org/abs/2503.06891v1)|[link](https://github.com/xpxie/akf-lio)| 72 | |**2025-03-10**|**A2I-Calib: An Anti-noise Active Multi-IMU Spatial-temporal Calibration Framework for Legged Robots**|Chaoran Xiong et.al.|[2503.06844v1](http://arxiv.org/abs/2503.06844v1)|null| 73 | |**2025-03-08**|**Hybrid CNN-Dilated Self-attention Model Using Inertial and Body-Area Electrostatic Sensing for Gym Workout Recognition, Counting, and User Authentification**|Sizhen Bian et.al.|[2503.06311v1](http://arxiv.org/abs/2503.06311v1)|[link](https://github.com/zhaxidele/toolkit-for-hbc-sensing)| 74 | |**2025-03-07**|**Adaptive Neural Unscented Kalman Filter**|Amit Levy et.al.|[2503.05490v1](http://arxiv.org/abs/2503.05490v1)|null| 75 | 76 | ### Visual Localization 77 | |Publish Date|Title|Authors|PDF|Code| 78 | | :---: | :---: | :---: | :---: | :---: | 79 | |**2025-03-17**|**AugMapNet: Improving Spatial Latent Structure via BEV Grid Augmentation for Enhanced Vectorized Online HD Map Construction**|Thomas Monninger et.al.|[2503.13430v1](http://arxiv.org/abs/2503.13430v1)|null| 80 | |**2025-03-17**|**FlexWorld: Progressively Expanding 3D Scenes for Flexiable-View Synthesis**|Luxi Chen et.al.|[2503.13265v1](http://arxiv.org/abs/2503.13265v1)|null| 81 | |**2025-03-17**|**Digital Beamforming Enhanced Radar Odometry**|Jingqi Jiang et.al.|[2503.13252v1](http://arxiv.org/abs/2503.13252v1)|null| 82 | |**2025-03-17**|**3D Hierarchical Panoptic Segmentation in Real Orchard Environments Across Different Sensors**|Matteo Sodano et.al.|[2503.13188v1](http://arxiv.org/abs/2503.13188v1)|null| 83 | |**2025-03-17**|**LIVEPOINT: Fully Decentralized, Safe, Deadlock-Free Multi-Robot Control in Cluttered Environments with High-Dimensional Inputs**|Jeffrey Chen et.al.|[2503.13098v1](http://arxiv.org/abs/2503.13098v1)|null| 84 | |**2025-03-17**|**Vision-based automatic fruit counting with UAV**|Hubert Szolc et.al.|[2503.13080v1](http://arxiv.org/abs/2503.13080v1)|null| 85 | |**2025-03-17**|**Hybrid Work in Agile Software Development: Recurring Meetings**|Emily Laue Christensen et.al.|[2503.13002v1](http://arxiv.org/abs/2503.13002v1)|null| 86 | |**2025-03-17**|**Analyzing Swimming Performance Using Drone Captured Aerial Videos**|Thu Tran et.al.|[2503.12981v1](http://arxiv.org/abs/2503.12981v1)|null| 87 | |**2025-03-17**|**DivCon-NeRF: Generating Augmented Rays with Diversity and Consistency for Few-shot View Synthesis**|Ingyun Lee et.al.|[2503.12947v1](http://arxiv.org/abs/2503.12947v1)|null| 88 | |**2025-03-17**|**GIFT: Generated Indoor video frames for Texture-less point tracking**|Jianzheng Huang et.al.|[2503.12944v1](http://arxiv.org/abs/2503.12944v1)|null| 89 | |**2025-03-17**|**AR-1-to-3: Single Image to Consistent 3D Object Generation via Next-View Prediction**|Xuying Zhang et.al.|[2503.12929v1](http://arxiv.org/abs/2503.12929v1)|null| 90 | |**2025-03-17**|**UCF-Crime-DVS: A Novel Event-Based Dataset for Video Anomaly Detection with Spiking Neural Networks**|Yuanbin Qian et.al.|[2503.12905v1](http://arxiv.org/abs/2503.12905v1)|null| 91 | |**2025-03-17**|**AUTV: Creating Underwater Video Datasets with Pixel-wise Annotations**|Quang Trung Truong et.al.|[2503.12828v1](http://arxiv.org/abs/2503.12828v1)|null| 92 | |**2025-03-17**|**Dynamic-Dark SLAM: RGB-Thermal Cooperative Robot Vision Strategy for Multi-Person Tracking in Both Well-Lit and Low-Light Scenes**|Tatsuro Sakai et.al.|[2503.12768v1](http://arxiv.org/abs/2503.12768v1)|null| 93 | |**2025-03-17**|**Stereo Event-based, 6-DOF Pose Tracking for Uncooperative Spacecraft**|Zibin Liu et.al.|[2503.12732v1](http://arxiv.org/abs/2503.12732v1)|null| 94 | |**2025-03-17**|**GenStereo: Towards Open-World Generation of Stereo Images and Unsupervised Matching**|Feng Qiao et.al.|[2503.12720v1](http://arxiv.org/abs/2503.12720v1)|null| 95 | |**2025-03-17**|**SatDepth: A Novel Dataset for Satellite Image Matching**|Rahul Deshmukh et.al.|[2503.12706v1](http://arxiv.org/abs/2503.12706v1)|null| 96 | |**2025-03-16**|**AnyCalib: On-Manifold Learning for Model-Agnostic Single-View Camera Calibration**|Javier Tirado-Garín et.al.|[2503.12701v1](http://arxiv.org/abs/2503.12701v1)|null| 97 | |**2025-03-16**|**Focusing Robot Open-Ended Reinforcement Learning Through Users' Purposes**|Emilio Cartoni et.al.|[2503.12579v1](http://arxiv.org/abs/2503.12579v1)|null| 98 | |**2025-03-16**|**Deblur Gaussian Splatting SLAM**|Francesco Girlanda et.al.|[2503.12572v1](http://arxiv.org/abs/2503.12572v1)|null| 99 | |**2025-03-16**|**Grasping Partially Occluded Objects Using Autoencoder-Based Point Cloud Inpainting**|Alexander Koebler et.al.|[2503.12549v1](http://arxiv.org/abs/2503.12549v1)|null| 100 | |**2025-03-16**|**An Analysis of Spitzer Phase Curves for WASP-121b and WASP-77Ab**|Brian Davenport et.al.|[2503.12521v1](http://arxiv.org/abs/2503.12521v1)|null| 101 | |**2025-03-16**|**Diffusion-based Synthetic Data Generation for Visible-Infrared Person Re-Identification**|Wenbo Dai et.al.|[2503.12472v1](http://arxiv.org/abs/2503.12472v1)|null| 102 | |**2025-03-16**|**Calibration of Complementary Metal-oxide-semiconductor Sensor-based Photometry to a Few-millimagnitude Precision: The Case of the Mini-SiTian Array**|Kai Xiao et.al.|[2503.12449v1](http://arxiv.org/abs/2503.12449v1)|null| 103 | |**2025-03-16**|**EgoEvGesture: Gesture Recognition Based on Egocentric Event Camera**|Luming Wang et.al.|[2503.12419v1](http://arxiv.org/abs/2503.12419v1)|null| 104 | |**2025-03-16**|**Micromotion compensation using dark and bright ions**|Orr Barnea et.al.|[2503.12417v1](http://arxiv.org/abs/2503.12417v1)|null| 105 | |**2025-03-16**|**L2COcc: Lightweight Camera-Centric Semantic Scene Completion via Distillation of LiDAR Model**|Ruoyu Wang et.al.|[2503.12369v1](http://arxiv.org/abs/2503.12369v1)|null| 106 | |**2025-03-16**|**GS-3I: Gaussian Splatting for Surface Reconstruction from Illumination-Inconsistent Images**|Tengfei Wang et.al.|[2503.12335v1](http://arxiv.org/abs/2503.12335v1)|null| 107 | |**2025-03-15**|**From Laboratory to Real World: A New Benchmark Towards Privacy-Preserved Visible-Infrared Person Re-Identification**|Yan Jiang et.al.|[2503.12232v1](http://arxiv.org/abs/2503.12232v1)|null| 108 | |**2025-03-15**|**DPCS: Path Tracing-Based Differentiable Projector-Camera Systems**|Jijiang Li et.al.|[2503.12174v1](http://arxiv.org/abs/2503.12174v1)|null| 109 | -------------------------------------------------------------------------------- /database/storage/storage_2025-04-26.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2025-04-26 21:14:17 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### VIO 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2025-04-24**|**EgoCHARM: Resource-Efficient Hierarchical Activity Recognition using an Egocentric IMU Sensor**|Akhil Padmanabha et.al.|[2504.17735v1](http://arxiv.org/abs/2504.17735v1)|null| 12 | |**2025-04-24**|**Hierarchical and Multimodal Data for Daily Activity Understanding**|Ghazal Kaviani et.al.|[2504.17696v1](http://arxiv.org/abs/2504.17696v1)|null| 13 | |**2025-04-24**|**Bias-Eliminated PnP for Stereo Visual Odometry: Provably Consistent and Large-Scale Localization**|Guangyang Zeng et.al.|[2504.17410v1](http://arxiv.org/abs/2504.17410v1)|null| 14 | |**2025-04-23**|**Lattice study of $cc\bar u\bar s$ tetraquark channel in $D^{(*)}D^{(*)}_s$ scattering**|Tanishk Shrimal et.al.|[2504.16931v1](http://arxiv.org/abs/2504.16931v1)|null| 15 | |**2025-04-23**|**Road Similarity-Based BEV-Satellite Image Matching for UGV Localization**|Zhenping Sun et.al.|[2504.16346v1](http://arxiv.org/abs/2504.16346v1)|null| 16 | |**2025-04-22**|**Monocular inspection of spacecraft under illumination constraints and avoidance regions**|Tochukwu Elijah Ogri et.al.|[2504.15954v1](http://arxiv.org/abs/2504.15954v1)|null| 17 | |**2025-04-22**|**RaSCL: Radar to Satellite Crossview Localization**|Blerim Abdullai et.al.|[2504.15899v1](http://arxiv.org/abs/2504.15899v1)|null| 18 | |**2025-04-22**|**Scale invariance of intermittency in LES turbulence**|B. Magacho et.al.|[2504.15874v1](http://arxiv.org/abs/2504.15874v1)|null| 19 | |**2025-04-22**|**Vielbein Lattice Boltzmann approach for fluid flows on spherical surfaces**|Victor E. Ambrus et.al.|[2504.15574v1](http://arxiv.org/abs/2504.15574v1)|null| 20 | |**2025-04-21**|**Magnetic recoil interferometer in a uniform gravitational field. Comment on Observation of the quantum equivalence principle for matter-waves**|Peter Asenbaum et.al.|[2504.15409v1](http://arxiv.org/abs/2504.15409v1)|null| 21 | |**2025-04-21**|**Cascade IPG Observer for Underwater Robot State Estimation**|Kaustubh Joshi et.al.|[2504.15235v1](http://arxiv.org/abs/2504.15235v1)|null| 22 | |**2025-04-21**|**The orientation dynamics of a massive ellipsoid in simple shear flow**|Giridar Vishwanathan et.al.|[2504.15074v1](http://arxiv.org/abs/2504.15074v1)|null| 23 | |**2025-04-20**|**Apples Falling, Buckets Rolling, and Why Inertia Keeps Trolling**|Nicola Bamonti et.al.|[2504.14734v1](http://arxiv.org/abs/2504.14734v1)|null| 24 | |**2025-04-20**|**Haptic-based Complementary Filter for Rigid Body Rotations**|Amit Kumar et.al.|[2504.14570v1](http://arxiv.org/abs/2504.14570v1)|null| 25 | |**2025-04-20**|**Diffusion-Driven Inertial Generated Data for Smartphone Location Classification**|Noa Cohen et.al.|[2504.15315v1](http://arxiv.org/abs/2504.15315v1)|null| 26 | |**2025-04-19**|**MILUV: A Multi-UAV Indoor Localization dataset with UWB and Vision**|Mohammed Ayman Shalaby et.al.|[2504.14376v1](http://arxiv.org/abs/2504.14376v1)|null| 27 | |**2025-04-18**|**Modeling transport in weakly collisional plasmas using thermodynamic forcing**|Prakriti Pal Choudhury et.al.|[2504.14000v1](http://arxiv.org/abs/2504.14000v1)|null| 28 | |**2025-04-18**|**Static linear density response from X-ray Thomson scattering measurements: a case study of warm dense beryllium**|Sebastian Schwalbe et.al.|[2504.13611v2](http://arxiv.org/abs/2504.13611v2)|null| 29 | |**2025-04-17**|**Imperative MPC: An End-to-End Self-Supervised Learning with Differentiable MPC for UAV Attitude Control**|Haonan He et.al.|[2504.13088v1](http://arxiv.org/abs/2504.13088v1)|null| 30 | |**2025-04-17**|**IdentiARAT: Toward Automated Identification of Individual ARAT Items from Wearable Sensors**|Daniel Homm et.al.|[2504.12921v1](http://arxiv.org/abs/2504.12921v1)|null| 31 | |**2025-04-16**|**MobilePoser: Real-Time Full-Body Pose Estimation and 3D Human Translation from IMUs in Mobile Consumer Devices**|Vasco Xu et.al.|[2504.12492v1](http://arxiv.org/abs/2504.12492v1)|[link](https://github.com/SPICExLAB/MobilePoser)| 32 | |**2025-04-16**|**Real-Time Shape Estimation of Tensegrity Structures Using Strut Inclination Angles**|Tufail Ahmad Bhat et.al.|[2504.11868v1](http://arxiv.org/abs/2504.11868v1)|null| 33 | |**2025-04-16**|**Analysis of Power Swing Characteristics of Grid-Forming VSC System Considering the Current Limitation Mode**|Yongxin Xiong et.al.|[2504.11797v1](http://arxiv.org/abs/2504.11797v1)|null| 34 | |**2025-04-16**|**Saga: Capturing Multi-granularity Semantics from Massive Unlabelled IMU Data for User Perception**|Yunzhe Li et.al.|[2504.11726v1](http://arxiv.org/abs/2504.11726v1)|null| 35 | |**2025-04-16**|**An Online Adaptation Method for Robust Depth Estimation and Visual Odometry in the Open World**|Xingwu Ji et.al.|[2504.11698v1](http://arxiv.org/abs/2504.11698v1)|[link](https://github.com/jixingwu/sol-slam)| 36 | |**2025-04-16**|**Velocity Distribution and Diffusion of an Athermal Inertial Run-and-Tumble Particle in a Shear-Thinning Medium**|Sayantan Mondal et.al.|[2504.11683v1](http://arxiv.org/abs/2504.11683v1)|null| 37 | |**2025-04-15**|**Doppler-SLAM: Doppler-Aided Radar-Inertial and LiDAR-Inertial Simultaneous Localization and Mapping**|Dong Wang et.al.|[2504.11634v2](http://arxiv.org/abs/2504.11634v2)|[link](https://github.com/wayne-dwa/doppler-slam)| 38 | |**2025-04-15**|**RESPLE: Recursive Spline Estimation for LiDAR-Based Odometry**|Ziyu Cao et.al.|[2504.11580v1](http://arxiv.org/abs/2504.11580v1)|[link](https://github.com/asig-x/resple)| 39 | |**2025-04-15**|**3D Object Reconstruction with mmWave Radars**|Samah Hussein et.al.|[2504.12348v1](http://arxiv.org/abs/2504.12348v1)|null| 40 | |**2025-04-15**|**Analysis of Preheat Propagation in MagLIF-like Plasmas**|Fernando Garcia-Rubio et.al.|[2504.11432v1](http://arxiv.org/abs/2504.11432v1)|null| 41 | 42 | ### VO 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2025-04-24**|**Bias-Eliminated PnP for Stereo Visual Odometry: Provably Consistent and Large-Scale Localization**|Guangyang Zeng et.al.|[2504.17410v1](http://arxiv.org/abs/2504.17410v1)|null| 46 | |**2025-04-23**|**Road Similarity-Based BEV-Satellite Image Matching for UGV Localization**|Zhenping Sun et.al.|[2504.16346v1](http://arxiv.org/abs/2504.16346v1)|null| 47 | |**2025-04-22**|**RaSCL: Radar to Satellite Crossview Localization**|Blerim Abdullai et.al.|[2504.15899v1](http://arxiv.org/abs/2504.15899v1)|null| 48 | |**2025-04-19**|**MILUV: A Multi-UAV Indoor Localization dataset with UWB and Vision**|Mohammed Ayman Shalaby et.al.|[2504.14376v1](http://arxiv.org/abs/2504.14376v1)|null| 49 | |**2025-04-17**|**Imperative MPC: An End-to-End Self-Supervised Learning with Differentiable MPC for UAV Attitude Control**|Haonan He et.al.|[2504.13088v1](http://arxiv.org/abs/2504.13088v1)|null| 50 | |**2025-04-16**|**An Online Adaptation Method for Robust Depth Estimation and Visual Odometry in the Open World**|Xingwu Ji et.al.|[2504.11698v1](http://arxiv.org/abs/2504.11698v1)|[link](https://github.com/jixingwu/sol-slam)| 51 | |**2025-04-15**|**Doppler-SLAM: Doppler-Aided Radar-Inertial and LiDAR-Inertial Simultaneous Localization and Mapping**|Dong Wang et.al.|[2504.11634v2](http://arxiv.org/abs/2504.11634v2)|[link](https://github.com/wayne-dwa/doppler-slam)| 52 | |**2025-04-15**|**RESPLE: Recursive Spline Estimation for LiDAR-Based Odometry**|Ziyu Cao et.al.|[2504.11580v1](http://arxiv.org/abs/2504.11580v1)|[link](https://github.com/asig-x/resple)| 53 | |**2025-04-15**|**3D Object Reconstruction with mmWave Radars**|Samah Hussein et.al.|[2504.12348v1](http://arxiv.org/abs/2504.12348v1)|null| 54 | |**2025-04-14**|**SeeTree -- A modular, open-source system for tree detection and orchard localization**|Jostan Brown et.al.|[2504.10764v1](http://arxiv.org/abs/2504.10764v1)|null| 55 | |**2025-04-13**|**Debiasing 6-DOF IMU via Hierarchical Learning of Continuous Bias Dynamics**|Ben Liu et.al.|[2504.09495v2](http://arxiv.org/abs/2504.09495v2)|[link](https://github.com/umich-curly/debias_imu)| 56 | |**2025-04-12**|**Multi-Robot Coordination with Adversarial Perception**|Rayan Bahrami et.al.|[2504.09047v1](http://arxiv.org/abs/2504.09047v1)|null| 57 | |**2025-04-11**|**PNE-SGAN: Probabilistic NDT-Enhanced Semantic Graph Attention Network for LiDAR Loop Closure Detection**|Xiong Li et.al.|[2504.08280v1](http://arxiv.org/abs/2504.08280v1)|null| 58 | |**2025-04-03**|**MonoGS++: Fast and Accurate Monocular RGB Gaussian SLAM**|Renwu Li et.al.|[2504.02437v1](http://arxiv.org/abs/2504.02437v1)|null| 59 | |**2025-04-02**|**A Chefs KISS -- Utilizing semantic information in both ICP and SLAM framework**|Sven Ochs et.al.|[2504.02086v1](http://arxiv.org/abs/2504.02086v1)|null| 60 | |**2025-04-02**|**Dynamic Initialization for LiDAR-inertial SLAM**|Jie Xu et.al.|[2504.01451v1](http://arxiv.org/abs/2504.01451v1)|[link](https://github.com/lian-yue0515/d-li-init)| 61 | |**2025-04-02**|**ForestVO: Enhancing Visual Odometry in Forest Environments through ForestGlue**|Thomas Pritchard et.al.|[2504.01261v1](http://arxiv.org/abs/2504.01261v1)|[link](https://github.com/aerialroboticsgroup/forest-vo)| 62 | |**2025-04-01**|**HDVIO2.0: Wind and Disturbance Estimation with Hybrid Dynamics VIO**|Giovanni Cioffi et.al.|[2504.00969v2](http://arxiv.org/abs/2504.00969v2)|[link](https://github.com/uzh-rpg/rpg_svo_pro_open)| 63 | |**2025-03-29**|**Incorporating GNSS Information with LIDAR-Inertial Odometry for Accurate Land-Vehicle Localization**|Jintao Cheng et.al.|[2503.23199v1](http://arxiv.org/abs/2503.23199v1)|null| 64 | |**2025-03-29**|**SuperEIO: Self-Supervised Event Feature Learning for Event Inertial Odometry**|Peiyu Chen et.al.|[2503.22963v1](http://arxiv.org/abs/2503.22963v1)|[link](https://github.com/arclab-hku/supereio)| 65 | |**2025-03-29**|**Towards Mobile Sensing with Event Cameras on High-agility Resource-constrained Devices: A Survey**|Haoyang Wang et.al.|[2503.22943v2](http://arxiv.org/abs/2503.22943v2)|null| 66 | |**2025-03-29**|**SR-LIO++: Efficient LiDAR-Inertial Odometry and Quantized Mapping with Sweep Reconstruction**|Zikang Yuan et.al.|[2503.22926v2](http://arxiv.org/abs/2503.22926v2)|null| 67 | |**2025-03-27**|**Lidar-only Odometry based on Multiple Scan-to-Scan Alignments over a Moving Window**|Aaron Kurda et.al.|[2503.21293v1](http://arxiv.org/abs/2503.21293v1)|null| 68 | |**2025-03-25**|**Scene-agnostic Pose Regression for Visual Localization**|Junwei Zheng et.al.|[2503.19543v1](http://arxiv.org/abs/2503.19543v1)|null| 69 | |**2025-03-24**|**Ground Penetrating Radar-Assisted Multimodal Robot Odometry Using Subsurface Feature Matrix**|Haifeng Li et.al.|[2503.18301v1](http://arxiv.org/abs/2503.18301v1)|null| 70 | |**2025-03-21**|**Splat-LOAM: Gaussian Splatting LiDAR Odometry and Mapping**|Emanuele Giacomini et.al.|[2503.17491v1](http://arxiv.org/abs/2503.17491v1)|[link](https://github.com/rvp-group/Splat-LOAM)| 71 | |**2025-03-18**|**GeoFlow-SLAM: A Robust Tightly-Coupled RGBD-Inertial Fusion SLAM for Dynamic Legged Robotics**|Tingyang Xiao et.al.|[2503.14247v1](http://arxiv.org/abs/2503.14247v1)|[link](https://github.com/nsn-hello/geoflow-slam)| 72 | |**2025-03-17**|**Digital Beamforming Enhanced Radar Odometry**|Jingqi Jiang et.al.|[2503.13252v1](http://arxiv.org/abs/2503.13252v1)|null| 73 | |**2025-03-16**|**KISS-SLAM: A Simple, Robust, and Accurate 3D LiDAR SLAM System With Enhanced Generalization Capabilities**|Tiziano Guadagnino et.al.|[2503.12660v1](http://arxiv.org/abs/2503.12660v1)|null| 74 | |**2025-03-16**|**A Plug-and-Play Learning-based IMU Bias Factor for Robust Visual-Inertial Odometry**|Yang Yi et.al.|[2503.12527v1](http://arxiv.org/abs/2503.12527v1)|null| 75 | 76 | ### Visual Localization 77 | |Publish Date|Title|Authors|PDF|Code| 78 | | :---: | :---: | :---: | :---: | :---: | 79 | |**2025-04-24**|**Dynamic Camera Poses and Where to Find Them**|Chris Rockwell et.al.|[2504.17788v1](http://arxiv.org/abs/2504.17788v1)|null| 80 | |**2025-04-24**|**Disaggregated Deep Learning via In-Physics Computing at Radio Frequency**|Zhihui Gao et.al.|[2504.17752v1](http://arxiv.org/abs/2504.17752v1)|null| 81 | |**2025-04-24**|**CasualHDRSplat: Robust High Dynamic Range 3D Gaussian Splatting from Casually Captured Videos**|Shucheng Gong et.al.|[2504.17728v1](http://arxiv.org/abs/2504.17728v1)|null| 82 | |**2025-04-24**|**STGen: A Novel Lightweight IoT Testbed for Generating Sensor Traffic for the Experimentation of IoT Protocol and its Application in Hybrid Network**|Hasan MA Islam et.al.|[2504.17725v1](http://arxiv.org/abs/2504.17725v1)|null| 83 | |**2025-04-24**|**Hierarchical and Multimodal Data for Daily Activity Understanding**|Ghazal Kaviani et.al.|[2504.17696v1](http://arxiv.org/abs/2504.17696v1)|null| 84 | |**2025-04-24**|**User Profiles: The Achilles' Heel of Web Browsers**|Dolière Francis Somé et.al.|[2504.17692v1](http://arxiv.org/abs/2504.17692v1)|null| 85 | |**2025-04-24**|**A Guide to Structureless Visual Localization**|Vojtech Panek et.al.|[2504.17636v1](http://arxiv.org/abs/2504.17636v1)|null| 86 | |**2025-04-24**|**Time-resolved dynamics of GaN waveguide polaritons**|Loïc Méchin et.al.|[2504.17607v1](http://arxiv.org/abs/2504.17607v1)|null| 87 | |**2025-04-24**|**Object Pose Estimation by Camera Arm Control Based on the Next Viewpoint Estimation**|Tomoki Mizuno et.al.|[2504.17424v1](http://arxiv.org/abs/2504.17424v1)|null| 88 | |**2025-04-24**|**Highly Accurate and Diverse Traffic Data: The DeepScenario Open 3D Dataset**|Oussema Dhaouadi et.al.|[2504.17371v1](http://arxiv.org/abs/2504.17371v1)|null| 89 | |**2025-04-24**|**Inverse-Designed Metasurfaces for Wavefront Restoration in Under-Display Camera Systems**|Jaegang Jo et.al.|[2504.17368v1](http://arxiv.org/abs/2504.17368v1)|null| 90 | |**2025-04-24**|**Scene Perceived Image Perceptual Score (SPIPS): combining global and local perception for image quality assessment**|Zhiqiang Lao et.al.|[2504.17234v1](http://arxiv.org/abs/2504.17234v1)|null| 91 | |**2025-04-24**|**A Double-Norm Aggregated Tensor Latent Factorization Model for Temporal-Aware Traffic Speed Imputation**|Jiawen Hou et.al.|[2504.17196v1](http://arxiv.org/abs/2504.17196v1)|null| 92 | |**2025-04-24**|**Augmenting Captions with Emotional Cues: An AR Interface for Real-Time Accessible Communication**|Sunday David Ubur et.al.|[2504.17171v1](http://arxiv.org/abs/2504.17171v1)|null| 93 | |**2025-04-24**|**Invasion depth estimation of gastric cancer in early stage using circularly polarized light scattering: Phantom studies**|Mike R. Maskey et.al.|[2504.17161v1](http://arxiv.org/abs/2504.17161v1)|null| 94 | |**2025-04-23**|**Venus and Bright Planets Through a Large-Scale Camera Obscura: Optical and Mechanical Issues of Conducting the Observations**|Krzysztof Wójcik et.al.|[2504.17138v1](http://arxiv.org/abs/2504.17138v1)|null| 95 | |**2025-04-23**|**PACE: A Framework for Learning and Control in Linear Incomplete-Information Differential Games**|Seyed Yousef Soltanian et.al.|[2504.17128v1](http://arxiv.org/abs/2504.17128v1)|null| 96 | |**2025-04-23**|**MorphoNavi: Aerial-Ground Robot Navigation with Object Oriented Mapping in Digital Twin**|Sausar Karaf et.al.|[2504.16914v1](http://arxiv.org/abs/2504.16914v1)|null| 97 | |**2025-04-23**|**An Accelerated Camera 3DMA Framework for Efficient Urban GNSS Multipath Estimation**|Shiyao Lv et.al.|[2504.16906v1](http://arxiv.org/abs/2504.16906v1)|null| 98 | |**2025-04-23**|**Gaussian Splatting is an Effective Data Generator for 3D Object Detection**|Farhad G. Zanjani et.al.|[2504.16740v1](http://arxiv.org/abs/2504.16740v1)|null| 99 | |**2025-04-23**|**WiFi based Human Fall and Activity Recognition using Transformer based Encoder Decoder and Graph Neural Networks**|Younggeol Cho et.al.|[2504.16655v1](http://arxiv.org/abs/2504.16655v1)|null| 100 | |**2025-04-23**|**Dual-Camera All-in-Focus Neural Radiance Fields**|Xianrui Luo et.al.|[2504.16636v1](http://arxiv.org/abs/2504.16636v1)|null| 101 | |**2025-04-23**|**EHGCN: Hierarchical Euclidean-Hyperbolic Fusion via Motion-Aware GCN for Hybrid Event Stream Perception**|Haosheng Chen et.al.|[2504.16616v1](http://arxiv.org/abs/2504.16616v1)|null| 102 | |**2025-04-23**|**PRaDA: Projective Radial Distortion Averaging**|Daniil Sinitsyn et.al.|[2504.16499v1](http://arxiv.org/abs/2504.16499v1)|null| 103 | |**2025-04-23**|**Long Exposure Localization in Darkness Using Consumer Cameras**|Michael Milford et.al.|[2504.16406v1](http://arxiv.org/abs/2504.16406v1)|null| 104 | |**2025-04-23**|**SaENeRF: Suppressing Artifacts in Event-based Neural Radiance Fields**|Yuanjian Wang et.al.|[2504.16389v1](http://arxiv.org/abs/2504.16389v1)|null| 105 | |**2025-04-23**|**DPGP: A Hybrid 2D-3D Dual Path Potential Ghost Probe Zone Prediction Framework for Safe Autonomous Driving**|Weiming Qu et.al.|[2504.16374v1](http://arxiv.org/abs/2504.16374v1)|null| 106 | |**2025-04-23**|**Revisiting Radar Camera Alignment by Contrastive Learning for 3D Object Detection**|Linhua Kong et.al.|[2504.16368v1](http://arxiv.org/abs/2504.16368v1)|null| 107 | |**2025-04-22**|**PCF-Grasp: Converting Point Completion to Geometry Feature to Enhance 6-DoF Grasp**|Yaofeng Cheng et.al.|[2504.16320v1](http://arxiv.org/abs/2504.16320v1)|null| 108 | |**2025-04-22**|**DataS^3: Dataset Subset Selection for Specialization**|Neha Hulkund et.al.|[2504.16277v1](http://arxiv.org/abs/2504.16277v1)|null| 109 | -------------------------------------------------------------------------------- /database/storage/storage_2025-05-08.md: -------------------------------------------------------------------------------- 1 | # arxiv-daily 2 | Automated deployment @ 2025-05-08 21:00:09 Asia/Shanghai 3 | > Welcome to contribute! Add your topics and keywords in [`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml). 4 | > You can also view historical data through the [storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage). 5 | 6 | ## Robotics 7 | 8 | ### SLAM 9 | |Publish Date|Title|Authors|PDF|Code| 10 | | :---: | :---: | :---: | :---: | :---: | 11 | |**2025-05-07**|**Scalable Aerial GNSS Localization for Marine Robots**|Shuo Wen et.al.|[2505.04095v1](http://arxiv.org/abs/2505.04095v1)|null| 12 | |**2025-05-06**|**Thermal-LiDAR Fusion for Robust Tunnel Localization in GNSS-Denied and Low-Visibility Conditions**|Lukas Schichler et.al.|[2505.03565v1](http://arxiv.org/abs/2505.03565v1)|null| 13 | |**2025-05-06**|**AquaticVision: Benchmarking Visual SLAM in Underwater Environment with Events and Frames**|Yifan Peng et.al.|[2505.03448v1](http://arxiv.org/abs/2505.03448v1)|null| 14 | |**2025-05-06**|**LiftFeat: 3D Geometry-Aware Local Feature Matching**|Yepeng Liu et.al.|[2505.03422v1](http://arxiv.org/abs/2505.03422v1)|[link](https://github.com/lyp-deeplearning/liftfeat)| 15 | |**2025-05-05**|**LiDAR-Inertial SLAM-Based Navigation and Safety-Oriented AI-Driven Control System for Skid-Steer Robots**|Mehdi Heydari Shahna et.al.|[2505.02598v1](http://arxiv.org/abs/2505.02598v1)|null| 16 | |**2025-05-04**|**Robust Localization, Mapping, and Navigation for Quadruped Robots**|Dyuman Aditya et.al.|[2505.02272v1](http://arxiv.org/abs/2505.02272v1)|null| 17 | |**2025-05-04**|**SafeNav: Safe Path Navigation using Landmark Based Localization in a GPS-denied Environment**|Ganesh Sapkota et.al.|[2505.01956v1](http://arxiv.org/abs/2505.01956v1)|null| 18 | |**2025-05-03**|**GauS-SLAM: Dense RGB-D SLAM with Gaussian Surfels**|Yongxin Su et.al.|[2505.01934v1](http://arxiv.org/abs/2505.01934v1)|null| 19 | |**2025-05-02**|**Tightly Coupled Range Inertial Odometry and Mapping with Exact Point Cloud Downsampling**|Kenji Koide et.al.|[2505.01017v1](http://arxiv.org/abs/2505.01017v1)|null| 20 | |**2025-04-30**|**An Underwater, Fault-Tolerant, Laser-Aided Robotic Multi-Modal Dense SLAM System for Continuous Underwater In-Situ Observation**|Yaming Ou et.al.|[2504.21826v1](http://arxiv.org/abs/2504.21826v1)|null| 21 | |**2025-04-29**|**Large-scale visual SLAM for in-the-wild videos**|Shuo Sun et.al.|[2504.20496v1](http://arxiv.org/abs/2504.20496v1)|null| 22 | |**2025-04-28**|**Transformation & Translation Occupancy Grid Mapping: 2-Dimensional Deep Learning Refined SLAM**|Leon Davies et.al.|[2504.19654v1](http://arxiv.org/abs/2504.19654v1)|null| 23 | |**2025-04-28**|**GAN-SLAM: Real-Time GAN Aided Floor Plan Creation Through SLAM**|Leon Davies et.al.|[2504.19653v1](http://arxiv.org/abs/2504.19653v1)|null| 24 | |**2025-04-28**|**GSFF-SLAM: 3D Semantic Gaussian Splatting SLAM via Feature Field**|Zuxing Lu et.al.|[2504.19409v1](http://arxiv.org/abs/2504.19409v1)|null| 25 | |**2025-04-27**|**Beyond Physical Reach: Comparing Head- and Cane-Mounted Cameras for Last-Mile Navigation by Blind Users**|Apurv Varshney et.al.|[2504.19345v1](http://arxiv.org/abs/2504.19345v1)|null| 26 | |**2025-04-27**|**NANO-SLAM : Natural Gradient Gaussian Approximation for Vehicle SLAM**|Tianyi Zhang et.al.|[2504.19195v1](http://arxiv.org/abs/2504.19195v1)|null| 27 | |**2025-04-27**|**MISO: Multiresolution Submap Optimization for Efficient Globally Consistent Neural Implicit Reconstruction**|Yulun Tian et.al.|[2504.19104v1](http://arxiv.org/abs/2504.19104v1)|null| 28 | |**2025-04-25**|**Certifiably-Correct Mapping for Safe Navigation Despite Odometry Drift**|Devansh R. Agrawal et.al.|[2504.18713v1](http://arxiv.org/abs/2504.18713v1)|null| 29 | |**2025-04-25**|**Range-based 6-DoF Monte Carlo SLAM with Gradient-guided Particle Filter on GPU**|Takumi Nakao et.al.|[2504.18056v1](http://arxiv.org/abs/2504.18056v1)|null| 30 | |**2025-04-24**|**Autonomous Navigation Of Quadrupeds Using Coverage Path Planning**|Alexander James Becoy et.al.|[2504.17880v1](http://arxiv.org/abs/2504.17880v1)|null| 31 | |**2025-04-24**|**BIM-Constrained Optimization for Accurate Localization and Deviation Correction in Construction Monitoring**|Asier Bikandi et.al.|[2504.17693v1](http://arxiv.org/abs/2504.17693v1)|null| 32 | |**2025-04-24**|**Occlusion-Aware Self-Supervised Monocular Depth Estimation for Weak-Texture Endoscopic Images**|Zebo Huang et.al.|[2504.17582v1](http://arxiv.org/abs/2504.17582v1)|null| 33 | |**2025-04-24**|**EdgePoint2: Compact Descriptors for Superior Efficiency and Accuracy**|Haodi Yao et.al.|[2504.17280v1](http://arxiv.org/abs/2504.17280v1)|null| 34 | |**2025-04-23**|**ToF-Splatting: Dense SLAM using Sparse Time-of-Flight Depth and Multi-Frame Integration**|Andrea Conti et.al.|[2504.16545v1](http://arxiv.org/abs/2504.16545v1)|null| 35 | |**2025-04-22**|**SmallGS: Gaussian Splatting-based Camera Pose Estimation for Small-Baseline Videos**|Yuxin Yao et.al.|[2504.17810v1](http://arxiv.org/abs/2504.17810v1)|null| 36 | |**2025-04-22**|**DERD-Net: Learning Depth from Event-based Ray Densities**|Diego de Oliveira Hitzges et.al.|[2504.15863v1](http://arxiv.org/abs/2504.15863v1)|null| 37 | |**2025-04-20**|**Back on Track: Bundle Adjustment for Dynamic Scene Reconstruction**|Weirong Chen et.al.|[2504.14516v1](http://arxiv.org/abs/2504.14516v1)|null| 38 | |**2025-04-20**|**SG-Reg: Generalizable and Efficient Scene Graph Registration**|Chuhao Liu et.al.|[2504.14440v1](http://arxiv.org/abs/2504.14440v1)|[link](https://github.com/hkust-aerial-robotics/sg-reg)| 39 | |**2025-04-19**|**Unreal Robotics Lab: A High-Fidelity Robotics Simulator with Advanced Physics and Rendering**|Jonathan Embley-Riches et.al.|[2504.14135v1](http://arxiv.org/abs/2504.14135v1)|null| 40 | |**2025-04-18**|**SLAM-Based Navigation and Fault Resilience in a Surveillance Quadcopter with Embedded Vision Systems**|Abhishek Tyagi et.al.|[2504.15305v2](http://arxiv.org/abs/2504.15305v2)|null| 41 | 42 | ### VO 43 | |Publish Date|Title|Authors|PDF|Code| 44 | | :---: | :---: | :---: | :---: | :---: | 45 | |**2025-05-07**|**Do We Still Need to Work on Odometry for Autonomous Driving?**|Cedric Le Gentil et.al.|[2505.04438v1](http://arxiv.org/abs/2505.04438v1)|null| 46 | |**2025-05-06**|**Thermal-LiDAR Fusion for Robust Tunnel Localization in GNSS-Denied and Low-Visibility Conditions**|Lukas Schichler et.al.|[2505.03565v1](http://arxiv.org/abs/2505.03565v1)|null| 47 | |**2025-05-04**|**Robust Localization, Mapping, and Navigation for Quadruped Robots**|Dyuman Aditya et.al.|[2505.02272v1](http://arxiv.org/abs/2505.02272v1)|null| 48 | |**2025-05-04**|**Enhancing Lidar Point Cloud Sampling via Colorization and Super-Resolution of Lidar Imagery**|Sier Ha et.al.|[2505.02049v1](http://arxiv.org/abs/2505.02049v1)|null| 49 | |**2025-05-04**|**SafeNav: Safe Path Navigation using Landmark Based Localization in a GPS-denied Environment**|Ganesh Sapkota et.al.|[2505.01956v1](http://arxiv.org/abs/2505.01956v1)|null| 50 | |**2025-05-02**|**Toward Teach and Repeat Across Seasonal Deep Snow Accumulation**|Matěj Boxan et.al.|[2505.01339v1](http://arxiv.org/abs/2505.01339v1)|null| 51 | |**2025-05-02**|**Tightly Coupled Range Inertial Odometry and Mapping with Exact Point Cloud Downsampling**|Kenji Koide et.al.|[2505.01017v1](http://arxiv.org/abs/2505.01017v1)|null| 52 | |**2025-05-02**|**Optimizing Indoor Farm Monitoring Efficiency Using UAV: Yield Estimation in a GNSS-Denied Cherry Tomato Greenhouse**|Taewook Park et.al.|[2505.00995v1](http://arxiv.org/abs/2505.00995v1)|null| 53 | |**2025-05-01**|**Fault-Tolerant Multi-Modal Localization of Multi-Robots on Matrix Lie Groups**|Mahboubeh Zarei et.al.|[2505.00842v1](http://arxiv.org/abs/2505.00842v1)|null| 54 | |**2025-04-30**|**An Underwater, Fault-Tolerant, Laser-Aided Robotic Multi-Modal Dense SLAM System for Continuous Underwater In-Situ Observation**|Yaming Ou et.al.|[2504.21826v1](http://arxiv.org/abs/2504.21826v1)|null| 55 | |**2025-04-30**|**Self-Supervised Monocular Visual Drone Model Identification through Improved Occlusion Handling**|Stavrow A. Bahnam et.al.|[2504.21695v1](http://arxiv.org/abs/2504.21695v1)|null| 56 | |**2025-04-30**|**eNCApsulate: NCA for Precision Diagnosis on Capsule Endoscopes**|Henry John Krumb et.al.|[2504.21562v1](http://arxiv.org/abs/2504.21562v1)|null| 57 | |**2025-04-29**|**Multi-Sensor Fusion for Quadruped Robot State Estimation using Invariant Filtering and Smoothing**|Ylenia Nisticò et.al.|[2504.20615v1](http://arxiv.org/abs/2504.20615v1)|null| 58 | |**2025-04-29**|**Large-scale visual SLAM for in-the-wild videos**|Shuo Sun et.al.|[2504.20496v1](http://arxiv.org/abs/2504.20496v1)|null| 59 | |**2025-04-29**|**LPVIMO-SAM: Tightly-coupled LiDAR/Polarization Vision/Inertial/Magnetometer/Optical Flow Odometry via Smoothing and Mapping**|Derui Shan et.al.|[2504.20380v1](http://arxiv.org/abs/2504.20380v1)|null| 60 | |**2025-04-29**|**DRO: Doppler-Aware Direct Radar Odometry**|Cedric Le Gentil et.al.|[2504.20339v1](http://arxiv.org/abs/2504.20339v1)|null| 61 | |**2025-04-28**|**Transformation & Translation Occupancy Grid Mapping: 2-Dimensional Deep Learning Refined SLAM**|Leon Davies et.al.|[2504.19654v1](http://arxiv.org/abs/2504.19654v1)|null| 62 | |**2025-04-28**|**GAN-SLAM: Real-Time GAN Aided Floor Plan Creation Through SLAM**|Leon Davies et.al.|[2504.19653v1](http://arxiv.org/abs/2504.19653v1)|null| 63 | |**2025-04-26**|**An SE(3) Noise Model for Range-Azimuth-Elevation Sensors**|Thomas Hitchcox et.al.|[2504.19009v1](http://arxiv.org/abs/2504.19009v1)|null| 64 | |**2025-04-25**|**Vysics: Object Reconstruction Under Occlusion by Fusing Vision and Contact-Rich Physics**|Bibit Bianchini et.al.|[2504.18719v1](http://arxiv.org/abs/2504.18719v1)|null| 65 | |**2025-04-25**|**Certifiably-Correct Mapping for Safe Navigation Despite Odometry Drift**|Devansh R. Agrawal et.al.|[2504.18713v1](http://arxiv.org/abs/2504.18713v1)|null| 66 | |**2025-04-24**|**Bias-Eliminated PnP for Stereo Visual Odometry: Provably Consistent and Large-Scale Localization**|Guangyang Zeng et.al.|[2504.17410v1](http://arxiv.org/abs/2504.17410v1)|null| 67 | |**2025-04-23**|**Road Similarity-Based BEV-Satellite Image Matching for UGV Localization**|Zhenping Sun et.al.|[2504.16346v1](http://arxiv.org/abs/2504.16346v1)|null| 68 | |**2025-04-22**|**RaSCL: Radar to Satellite Crossview Localization**|Blerim Abdullai et.al.|[2504.15899v1](http://arxiv.org/abs/2504.15899v1)|null| 69 | |**2025-04-19**|**MILUV: A Multi-UAV Indoor Localization dataset with UWB and Vision**|Mohammed Ayman Shalaby et.al.|[2504.14376v1](http://arxiv.org/abs/2504.14376v1)|null| 70 | |**2025-04-17**|**Imperative MPC: An End-to-End Self-Supervised Learning with Differentiable MPC for UAV Attitude Control**|Haonan He et.al.|[2504.13088v2](http://arxiv.org/abs/2504.13088v2)|null| 71 | |**2025-04-16**|**An Online Adaptation Method for Robust Depth Estimation and Visual Odometry in the Open World**|Xingwu Ji et.al.|[2504.11698v1](http://arxiv.org/abs/2504.11698v1)|[link](https://github.com/jixingwu/sol-slam)| 72 | |**2025-04-15**|**Doppler-SLAM: Doppler-Aided Radar-Inertial and LiDAR-Inertial Simultaneous Localization and Mapping**|Dong Wang et.al.|[2504.11634v2](http://arxiv.org/abs/2504.11634v2)|[link](https://github.com/wayne-dwa/doppler-slam)| 73 | |**2025-04-15**|**RESPLE: Recursive Spline Estimation for LiDAR-Based Odometry**|Ziyu Cao et.al.|[2504.11580v1](http://arxiv.org/abs/2504.11580v1)|[link](https://github.com/asig-x/resple)| 74 | |**2025-04-15**|**3D Object Reconstruction with mmWave Radars**|Samah Hussein et.al.|[2504.12348v1](http://arxiv.org/abs/2504.12348v1)|null| 75 | 76 | ### VIO 77 | |Publish Date|Title|Authors|PDF|Code| 78 | | :---: | :---: | :---: | :---: | :---: | 79 | |**2025-05-07**|**Do We Still Need to Work on Odometry for Autonomous Driving?**|Cedric Le Gentil et.al.|[2505.04438v1](http://arxiv.org/abs/2505.04438v1)|null| 80 | |**2025-05-07**|**Tangential Forces Govern the Viscous-Inertial Transition in Dense Frictional Suspensions**|Sudarshan Konidena et.al.|[2505.04242v1](http://arxiv.org/abs/2505.04242v1)|null| 81 | |**2025-05-07**|**Scalable Aerial GNSS Localization for Marine Robots**|Shuo Wen et.al.|[2505.04095v1](http://arxiv.org/abs/2505.04095v1)|null| 82 | |**2025-05-07**|**Dynamic scaling of vorticity in phase-separating superfluid mixtures**|Ryuta Ito et.al.|[2505.04079v1](http://arxiv.org/abs/2505.04079v1)|null| 83 | |**2025-05-06**|**Thermal-LiDAR Fusion for Robust Tunnel Localization in GNSS-Denied and Low-Visibility Conditions**|Lukas Schichler et.al.|[2505.03565v1](http://arxiv.org/abs/2505.03565v1)|null| 84 | |**2025-05-06**|**Solar Coronal Heating: Role of Kinetic and Inertial Alfvén Waves in Heating and Charged Particle Acceleration**|Syed Ayaz et.al.|[2505.03267v1](http://arxiv.org/abs/2505.03267v1)|null| 85 | |**2025-05-05**|**An Exact Turbulence Law For the Fluid Description of Fusion Edge Plasmas**|Luisa Scarivaglione et.al.|[2505.03029v1](http://arxiv.org/abs/2505.03029v1)|null| 86 | |**2025-05-05**|**Evolution of the rippled inner-interface-initiated ablative Rayleigh-Taylor instability in laser-ablating high-Z doped targets**|W. Xiong et.al.|[2505.02715v1](http://arxiv.org/abs/2505.02715v1)|null| 87 | |**2025-05-05**|**LiDAR-Inertial SLAM-Based Navigation and Safety-Oriented AI-Driven Control System for Skid-Steer Robots**|Mehdi Heydari Shahna et.al.|[2505.02598v1](http://arxiv.org/abs/2505.02598v1)|null| 88 | |**2025-05-05**|**Experimental evidence of stimulated Raman re-scattering in laser-plasma interaction**|J. -R. Marquès et.al.|[2505.02547v1](http://arxiv.org/abs/2505.02547v1)|null| 89 | |**2025-05-05**|**Resolving Memorization in Empirical Diffusion Model for Manifold Data in High-Dimensional Spaces**|Yang Lyu et.al.|[2505.02508v2](http://arxiv.org/abs/2505.02508v2)|null| 90 | |**2025-05-05**|**Roadmap for warm dense matter physics**|Jan Vorberger et.al.|[2505.02494v1](http://arxiv.org/abs/2505.02494v1)|null| 91 | |**2025-05-04**|**Robust Localization, Mapping, and Navigation for Quadruped Robots**|Dyuman Aditya et.al.|[2505.02272v1](http://arxiv.org/abs/2505.02272v1)|null| 92 | |**2025-05-04**|**TxP: Reciprocal Generation of Ground Pressure Dynamics and Activity Descriptions for Improving Human Activity Recognition**|Lala Shakti Swarup Ray et.al.|[2505.02052v1](http://arxiv.org/abs/2505.02052v1)|null| 93 | |**2025-05-04**|**Enhancing Lidar Point Cloud Sampling via Colorization and Super-Resolution of Lidar Imagery**|Sier Ha et.al.|[2505.02049v1](http://arxiv.org/abs/2505.02049v1)|null| 94 | |**2025-05-04**|**SafeNav: Safe Path Navigation using Landmark Based Localization in a GPS-denied Environment**|Ganesh Sapkota et.al.|[2505.01956v1](http://arxiv.org/abs/2505.01956v1)|null| 95 | |**2025-05-02**|**Toward Teach and Repeat Across Seasonal Deep Snow Accumulation**|Matěj Boxan et.al.|[2505.01339v1](http://arxiv.org/abs/2505.01339v1)|null| 96 | |**2025-05-02**|**Tightly Coupled Range Inertial Odometry and Mapping with Exact Point Cloud Downsampling**|Kenji Koide et.al.|[2505.01017v1](http://arxiv.org/abs/2505.01017v1)|null| 97 | |**2025-05-02**|**Optimizing Indoor Farm Monitoring Efficiency Using UAV: Yield Estimation in a GNSS-Denied Cherry Tomato Greenhouse**|Taewook Park et.al.|[2505.00995v1](http://arxiv.org/abs/2505.00995v1)|null| 98 | |**2025-05-02**|**MARS: Defending Unmanned Aerial Vehicles From Attacks on Inertial Sensors with Model-based Anomaly Detection and Recovery**|Haocheng Meng et.al.|[2505.00924v1](http://arxiv.org/abs/2505.00924v1)|null| 99 | |**2025-05-01**|**Fault-Tolerant Multi-Modal Localization of Multi-Robots on Matrix Lie Groups**|Mahboubeh Zarei et.al.|[2505.00842v1](http://arxiv.org/abs/2505.00842v1)|null| 100 | |**2025-05-01**|**A Double Inertial Forward-Backward Splitting Algorithm With Applications to Regression and Classification Problems**|İrfan Işik et.al.|[2505.03794v1](http://arxiv.org/abs/2505.03794v1)|null| 101 | |**2025-04-30**|**An Underwater, Fault-Tolerant, Laser-Aided Robotic Multi-Modal Dense SLAM System for Continuous Underwater In-Situ Observation**|Yaming Ou et.al.|[2504.21826v1](http://arxiv.org/abs/2504.21826v1)|null| 102 | |**2025-04-30**|**Self-Supervised Monocular Visual Drone Model Identification through Improved Occlusion Handling**|Stavrow A. Bahnam et.al.|[2504.21695v1](http://arxiv.org/abs/2504.21695v1)|null| 103 | |**2025-04-30**|**eNCApsulate: NCA for Precision Diagnosis on Capsule Endoscopes**|Henry John Krumb et.al.|[2504.21562v1](http://arxiv.org/abs/2504.21562v1)|null| 104 | |**2025-04-30**|**Area rule of velocity circulation in two-dimensional instability-driven turbulence beyond the inertial range**|Bo-Jie Xie et.al.|[2504.21512v1](http://arxiv.org/abs/2504.21512v1)|null| 105 | |**2025-04-30**|**Provably-Safe, Online System Identification**|Bohao Zhang et.al.|[2504.21486v1](http://arxiv.org/abs/2504.21486v1)|null| 106 | |**2025-04-30**|**Kolmogorov Cascade as the Governing Mechanism for Intervortex Spacing in Quantum Turbulence**|Clément Bret et.al.|[2504.21416v1](http://arxiv.org/abs/2504.21416v1)|null| 107 | |**2025-04-30**|**From fluttering to drifting in inertialess sedimentation of achiral particles**|Christian Vaquero-Stainer et.al.|[2504.21355v1](http://arxiv.org/abs/2504.21355v1)|null| 108 | |**2025-04-29**|**Testing Compact, Fused Silica Resonator Based Inertial Sensors in a Gravitational Wave Detector Prototype Facility**|J J Carter et.al.|[2504.20918v1](http://arxiv.org/abs/2504.20918v1)|null| 109 | -------------------------------------------------------------------------------- /database/topic.yml: -------------------------------------------------------------------------------- 1 | "Robotics": 2 | "SLAM": '"SLAM"' 3 | "VIO": '"VIO"OR"Visual-Inertial Odometry"OR"Visual Inertial Odometry"' 4 | "VO": '"VO"OR"Visual Odometry"' 5 | "Visual Localization": '"Camera Localization"OR"Visual Localization"OR"Camera Re-localisation"' 6 | -------------------------------------------------------------------------------- /docs/Robotics/Robotics.md: -------------------------------------------------------------------------------- 1 | 2 | ### Robotics 3 | |Publish Date|Title|Authors|PDF|Code| 4 | | :---: | :---: | :---: | :---: | :---: | 5 | |**2021-12-29**|**Sequential Episodic Control**|Ismael T. Freire et.al.|[2112.14734v1](http://arxiv.org/abs/2112.14734v1)|null| 6 | |**2021-12-29**|**MetaGraspNet: A Large-Scale Benchmark Dataset for Vision-driven Robotic Grasping via Physics-based Metaverse Synthesis**|Yuhao Chen et.al.|[2112.14663v2](http://arxiv.org/abs/2112.14663v2)|[link](https://github.com/y2863/MetaGraspNet)| 7 | |**2021-12-29**|**DDPG car-following model with real-world human driving experience in CARLA**|Dianzhao Li et.al.|[2112.14602v1](http://arxiv.org/abs/2112.14602v1)|null| 8 | |**2021-12-29**|**Industry 4.0: Challenges and success factors for adopting digital technologies in airports**|Jia Hao Tan et.al.|[2112.14574v1](http://arxiv.org/abs/2112.14574v1)|null| 9 | |**2021-12-29**|**Altitude Optimization of UAV Base Stations from Satellite Images Using Deep Neural Network**|Ibrahim Shoer et.al.|[2112.14551v1](http://arxiv.org/abs/2112.14551v1)|null| 10 | |**2021-12-29**|**Optimal Sampled-Data Control of a Nonlinear System**|Yasuaki Oishi et.al.|[2112.14507v1](http://arxiv.org/abs/2112.14507v1)|null| 11 | |**2021-12-29**|**Fully Distributed Informative Planning for Environmental Learning with Multi-Robot Systems**|Dohyun Jang et.al.|[2112.14433v1](http://arxiv.org/abs/2112.14433v1)|null| 12 | |**2021-12-29**|**Efficient Belief Space Planning in High-Dimensional State Spaces using PIVOT: Predictive Incremental Variable Ordering Tactic**|Khen Elimelech et.al.|[2112.14428v1](http://arxiv.org/abs/2112.14428v1)|null| 13 | |**2021-12-29**|**Reachability Analysis for FollowerStopper: Safety Analysis and Experimental Results**|Fang-Chieh Chou et.al.|[2112.14345v1](http://arxiv.org/abs/2112.14345v1)|null| 14 | |**2021-12-29**|**Multi-Adversarial Safety Analysis for Autonomous Vehicles**|Gilbert Bahati et.al.|[2112.14344v1](http://arxiv.org/abs/2112.14344v1)|null| 15 | |**2021-12-28**|**Adoption of Industry 4.0 technologies in airports -- A systematic literature review**|Jia Hao Tan et.al.|[2112.14333v1](http://arxiv.org/abs/2112.14333v1)|null| 16 | |**2021-12-28**|**360° Optical Flow using Tangent Images**|Mingze Yuan et.al.|[2112.14331v1](http://arxiv.org/abs/2112.14331v1)|null| 17 | |**2021-12-28**|**Time-Incremental Learning from Data Using Temporal Logics**|Erfan Aasi et.al.|[2112.14300v1](http://arxiv.org/abs/2112.14300v1)|null| 18 | |**2021-12-28**|**Multimodal perception for dexterous manipulation**|Guanqun Cao et.al.|[2112.14298v1](http://arxiv.org/abs/2112.14298v1)|null| 19 | |**2021-12-28**|**Robotic Hand Rehabilitation System**|Dineshkumar et.al.|[2112.14225v1](http://arxiv.org/abs/2112.14225v1)|null| 20 | |**2021-12-28**|**Robotic Perception of Object Properties using Tactile Sensing**|Jiaqi Jiang et.al.|[2112.14119v1](http://arxiv.org/abs/2112.14119v1)|null| 21 | |**2021-12-28**|**Deep-CNN based Robotic Multi-Class Under-Canopy Weed Control in Precision Farming**|Yayun Du et.al.|[2112.13986v1](http://arxiv.org/abs/2112.13986v1)|null| 22 | |**2021-12-28**|**Relative velocity-based reward functions for crowd navigation of robots**|Xiaoqing Yang et.al.|[2112.13984v1](http://arxiv.org/abs/2112.13984v1)|null| 23 | |**2021-12-28**|**Soft Robotic Finger with Variable Effective Length enabled by an Antagonistic Constraint Mechanism**|Xing Wang et.al.|[2112.13981v1](http://arxiv.org/abs/2112.13981v1)|null| 24 | |**2021-12-28**|**Source Feature Compression for Object Classification in Vision-Based Underwater Robotics**|Xueyuan Zhao et.al.|[2112.13953v1](http://arxiv.org/abs/2112.13953v1)|null| 25 | |**2021-12-27**|**Multiagent Model-based Credit Assignment for Continuous Control**|Dongge Han et.al.|[2112.13937v1](http://arxiv.org/abs/2112.13937v1)|null| 26 | |**2021-12-27**|**Mechanics-based Analysis on Flagellated Robots**|Yayun Du et.al.|[2112.13927v1](http://arxiv.org/abs/2112.13927v1)|null| 27 | |**2021-12-27**|**Trajectory Planning for Hybrid Unmanned Aerial Underwater Vehicles with Smooth Media Transition**|Pedro Miranda Pinheiro et.al.|[2112.13819v1](http://arxiv.org/abs/2112.13819v1)|null| 28 | |**2021-12-27**|**AU Dataset for Visuo-Haptic Object Recognition for Robots**|Lasse Emil R. Bonner et.al.|[2112.13761v1](http://arxiv.org/abs/2112.13761v1)|null| 29 | |**2021-12-27**|**Bridging the Gap: Using Deep Acoustic Representations to Learn Grounded Language from Percepts and Raw Speech**|Gaoussou Youssouf Kebe et.al.|[2112.13758v1](http://arxiv.org/abs/2112.13758v1)|null| 30 | |**2021-12-27**|**Double Critic Deep Reinforcement Learning for Mapless 3D Navigation of Unmanned Aerial Vehicles**|Ricardo Bedin Grando et.al.|[2112.13724v1](http://arxiv.org/abs/2112.13724v1)|null| 31 | |**2021-12-27**|**Geometric mechanics of random kirigami**|Gaurav Chaudhary et.al.|[2112.13699v1](http://arxiv.org/abs/2112.13699v1)|null| 32 | |**2021-12-27**|**A Review on Controllability of Multi-Agent Systems using Switched Network**|Javeria Noor et.al.|[2112.13675v1](http://arxiv.org/abs/2112.13675v1)|null| 33 | |**2021-12-27**|**Survey on Stabilization of Nonlinear Systems via state/output feedback control**|Demelash Abiye Deguale et.al.|[2112.13588v1](http://arxiv.org/abs/2112.13588v1)|null| 34 | |**2021-12-27**|**Algorithm for recognizing the contour of a honeycomb block**|Maksim Viktorovich Kubrikov et.al.|[2112.13846v1](http://arxiv.org/abs/2112.13846v1)|null| 35 | -------------------------------------------------------------------------------- /docs/Robotics/SFM.md: -------------------------------------------------------------------------------- 1 | 2 | ### SFM 3 | |Publish Date|Title|Authors|PDF|Code| 4 | | :---: | :---: | :---: | :---: | :---: | 5 | |**2022-01-04**|**Online Multi-Object Tracking with Unsupervised Re-Identification Learning and Occlusion Estimation**|Qiankun Liu et.al.|[2201.01297v1](http://arxiv.org/abs/2201.01297v1)|null| 6 | |**2022-01-04**|**3DVSR: 3D EPI Volume-based Approach for Angular and Spatial Light field Image Super-resolution**|Trung-Hieu Tran et.al.|[2201.01294v1](http://arxiv.org/abs/2201.01294v1)|null| 7 | |**2022-01-04**|**A Transformer-Based Siamese Network for Change Detection**|Wele Gedara Chaminda Bandara et.al.|[2201.01293v1](http://arxiv.org/abs/2201.01293v1)|[link](https://github.com/wgcban/changeformer)| 8 | |**2022-01-04**|**Klein-Gordon equation in $q$-deformed Euclidean space**|Hartmut Wachter et.al.|[2201.01292v1](http://arxiv.org/abs/2201.01292v1)|null| 9 | |**2022-01-04**|**Self-directed Machine Learning**|Wenwu Zhu et.al.|[2201.01289v1](http://arxiv.org/abs/2201.01289v1)|null| 10 | |**2022-01-04**|**Automated Graph Machine Learning: Approaches, Libraries and Directions**|Xin Wang et.al.|[2201.01288v1](http://arxiv.org/abs/2201.01288v1)|null| 11 | |**2022-01-04**|**(5+1)-Dimensional Analytical Brane-World Models: Intersecting Thick Branes**|Henrique Matheus Gauy et.al.|[2201.01284v1](http://arxiv.org/abs/2201.01284v1)|null| 12 | |**2022-01-04**|**Self-supervised Learning from 100 Million Medical Images**|Florin C. Ghesu et.al.|[2201.01283v1](http://arxiv.org/abs/2201.01283v1)|null| 13 | |**2022-01-04**|**Coherent structures in plane channel flow of dilute polymer solutions**|Alexander Morozov et.al.|[2201.01274v1](http://arxiv.org/abs/2201.01274v1)|null| 14 | |**2022-01-04**|**Resilience Aspects in Distributed Wireless Electroencephalographic Sampling**|R. Natarov et.al.|[2201.01272v1](http://arxiv.org/abs/2201.01272v1)|null| 15 | |**2022-01-04**|**A tale of two double quasars: Hubble constant tension or biases?**|Luis J. Goicoechea et.al.|[2201.01271v1](http://arxiv.org/abs/2201.01271v1)|null| 16 | |**2022-01-04**|**The Muirhead-Rado inequality, 2: Symmetric means and inequalities**|Melvyn B. Nathanson et.al.|[2201.01270v1](http://arxiv.org/abs/2201.01270v1)|null| 17 | |**2022-01-04**|**The overlap distribution at two temperatures for the branching Brownian motion**|Benjamin Bonnefont et.al.|[2201.01269v1](http://arxiv.org/abs/2201.01269v1)|null| 18 | |**2022-01-04**|**Robust absolute solar flux density calibration for the Murchison Widefield Array**|Devojyoti Kansabanik et.al.|[2201.01267v1](http://arxiv.org/abs/2201.01267v1)|null| 19 | |**2022-01-04**|**Limits on primordial black holes detectability with Isatis: A BlackHawk tool**|Jérémy Auffinger et.al.|[2201.01265v1](http://arxiv.org/abs/2201.01265v1)|null| 20 | |**2022-01-04**|**An algebraic attack to the Bluetooth stream cipher E0**|Roberto La Scala et.al.|[2201.01262v1](http://arxiv.org/abs/2201.01262v1)|null| 21 | |**2022-01-04**|**Enhanced coupling of electron and nuclear spins by quantum tunneling resonances**|Anatoli Tsinovoy et.al.|[2201.01255v1](http://arxiv.org/abs/2201.01255v1)|null| 22 | |**2022-01-04**|**Trade-offs in the design and communication of flood-risk information**|Courtney M. Cooper et.al.|[2201.01254v1](http://arxiv.org/abs/2201.01254v1)|null| 23 | |**2022-01-04**|**Relaxation to steady states of a binary liquid mixture around an optically heated colloid**|Takeaki Araki et.al.|[2201.01253v1](http://arxiv.org/abs/2201.01253v1)|null| 24 | |**2022-01-04**|**Multi-Stage Episodic Control for Strategic Exploration in Text Games**|Jens Tuyls et.al.|[2201.01251v1](http://arxiv.org/abs/2201.01251v1)|[link](https://github.com/princeton-nlp/xtx)| 25 | |**2022-01-04**|**ExAID: A Multimodal Explanation Framework for Computer-Aided Diagnosis of Skin Lesions**|Adriano Lucieri et.al.|[2201.01249v1](http://arxiv.org/abs/2201.01249v1)|null| 26 | |**2022-01-04**|**On the primality and elasticity of algebraic valuations of cyclic free semirings**|Nancy Jiang et.al.|[2201.01245v1](http://arxiv.org/abs/2201.01245v1)|null| 27 | |**2022-01-04**|**The Parental Active Model: a unifying stochastic description of self-propulsion**|Lorenzo Caprini et.al.|[2201.01244v1](http://arxiv.org/abs/2201.01244v1)|null| 28 | |**2022-01-04**|**Eclipsing Binaries in Dynamically Interacting Close, Multiple Systems**|Tamás Borkovits et.al.|[2201.01243v1](http://arxiv.org/abs/2201.01243v1)|null| 29 | |**2022-01-04**|**Results of the EURADOS international comparison exercise on neutron spectra unfolding in Bonner spheres spectrometry**|J. M. Gómez-Ros et.al.|[2201.01241v1](http://arxiv.org/abs/2201.01241v1)|null| 30 | |**2022-01-04**|**Feedback and Engagement on an Introductory Programming Module**|Beate Grawemeyer et.al.|[2201.01240v1](http://arxiv.org/abs/2201.01240v1)|null| 31 | |**2022-01-04**|**The Most Difference in Means: A Statistic for Null and Near-Zero Results**|Bruce A. Corliss et.al.|[2201.01239v1](http://arxiv.org/abs/2201.01239v1)|null| 32 | |**2022-01-04**|**Derived Langlands VII: The PSH Algebra of Products of General Linear Groups**|Victor P Snaith et.al.|[2201.01238v1](http://arxiv.org/abs/2201.01238v1)|null| 33 | |**2022-01-04**|**On the Minimal Adversarial Perturbation for Deep Neural Networks with Provable Estimation Error**|Fabio Brau et.al.|[2201.01235v1](http://arxiv.org/abs/2201.01235v1)|null| 34 | |**2022-01-04**|**Discrete and continuous representations and processing in deep learning: Looking forward**|Ruben Cartuyvels et.al.|[2201.01233v1](http://arxiv.org/abs/2201.01233v1)|null| 35 | -------------------------------------------------------------------------------- /docs/Robotics/SLAM.md: -------------------------------------------------------------------------------- 1 | 2 | ### SLAM 3 | |Publish Date|Title|Authors|PDF|Code| 4 | | :---: | :---: | :---: | :---: | :---: | 5 | |**2025-06-05**|**Deep Learning Reforms Image Matching: A Survey and Outlook**|Shihua Zhang et.al.|[2506.04619v1](http://arxiv.org/abs/2506.04619v1)|null| 6 | |**2025-06-04**|**Seeing in the Dark: Benchmarking Egocentric 3D Vision with the Oxford Day-and-Night Dataset**|Zirui Wang et.al.|[2506.04224v1](http://arxiv.org/abs/2506.04224v1)|null| 7 | |**2025-06-03**|**LEG-SLAM: Real-Time Language-Enhanced Gaussian Splatting for SLAM**|Roman Titkov et.al.|[2506.03073v1](http://arxiv.org/abs/2506.03073v1)|null| 8 | |**2025-06-03**|**Online Performance Assessment of Multi-Source-Localization for Autonomous Driving Systems Using Subjective Logic**|Stefan Orf et.al.|[2506.02932v1](http://arxiv.org/abs/2506.02932v1)|null| 9 | |**2025-06-03**|**VTGaussian-SLAM: RGBD SLAM for Large Scale Scenes with Splatting View-Tied 3D Gaussians**|Pengchong Hu et.al.|[2506.02741v1](http://arxiv.org/abs/2506.02741v1)|null| 10 | |**2025-06-03**|**GeneA-SLAM2: Dynamic SLAM with AutoEncoder-Preprocessed Genetic Keypoints Resampling and Depth Variance-Guided Dynamic Region Removal**|Shufan Qing et.al.|[2506.02736v1](http://arxiv.org/abs/2506.02736v1)|[link](https://github.com/qingshufan/GeneA-SLAM2)| 11 | |**2025-06-03**|**Olfactory Inertial Odometry: Methodology for Effective Robot Navigation by Scent**|Kordel K. France et.al.|[2506.02373v1](http://arxiv.org/abs/2506.02373v1)|null| 12 | |**2025-06-01**|**Globally Consistent RGB-D SLAM with 2D Gaussian Splatting**|Xingguang Zhong et.al.|[2506.00970v1](http://arxiv.org/abs/2506.00970v1)|null| 13 | |**2025-05-30**|**Black-box Adversarial Attacks on CNN-based SLAM Algorithms**|Maria Rafaela Gkeka et.al.|[2505.24654v1](http://arxiv.org/abs/2505.24654v1)|null| 14 | |**2025-05-28**|**Semantic Exploration and Dense Mapping of Complex Environments using Ground Robots Equipped with LiDAR and Panoramic Camera**|Xiaoyang Zhan et.al.|[2505.22880v1](http://arxiv.org/abs/2505.22880v1)|null| 15 | |**2025-05-28**|**4DTAM: Non-Rigid Tracking and Mapping via Dynamic Surface Gaussians**|Hidenobu Matsuki et.al.|[2505.22859v1](http://arxiv.org/abs/2505.22859v1)|null| 16 | |**2025-05-28**|**UP-SLAM: Adaptively Structured Gaussian SLAM with Uncertainty Prediction in Dynamic Environments**|Wancai Zheng et.al.|[2505.22335v1](http://arxiv.org/abs/2505.22335v1)|null| 17 | |**2025-05-27**|**HS-SLAM: A Fast and Hybrid Strategy-Based SLAM Approach for Low-Speed Autonomous Driving**|Bingxiang Kang et.al.|[2505.20906v1](http://arxiv.org/abs/2505.20906v1)|null| 18 | |**2025-05-27**|**ProBA: Probabilistic Bundle Adjustment with the Bhattacharyya Coefficient**|Jason Chui et.al.|[2505.20858v1](http://arxiv.org/abs/2505.20858v1)|null| 19 | |**2025-05-26**|**ADD-SLAM: Adaptive Dynamic Dense SLAM with Gaussian Splatting**|Wenhua Wu et.al.|[2505.19420v1](http://arxiv.org/abs/2505.19420v1)|null| 20 | |**2025-05-25**|**VPGS-SLAM: Voxel-based Progressive 3D Gaussian SLAM in Large-Scale Scenes**|Tianchen Deng et.al.|[2505.18992v1](http://arxiv.org/abs/2505.18992v1)|null| 21 | |**2025-05-23**|**CU-Multi: A Dataset for Multi-Robot Data Association**|Doncey Albin et.al.|[2505.17576v1](http://arxiv.org/abs/2505.17576v1)|null| 22 | |**2025-05-22**|**TAT-VPR: Ternary Adaptive Transformer for Dynamic and Efficient Visual Place Recognition**|Oliver Grainge et.al.|[2505.16447v1](http://arxiv.org/abs/2505.16447v1)|null| 23 | |**2025-05-20**|**A Methodological Framework for Measuring Spatial Labeling Similarity**|Yihang Du et.al.|[2505.14128v1](http://arxiv.org/abs/2505.14128v1)|[link](https://github.com/yihdu/slam)| 24 | |**2025-05-20**|**Place Recognition Meet Multiple Modalitie: A Comprehensive Review, Current Challenges and Future Directions**|Zhenyu Li et.al.|[2505.14068v3](http://arxiv.org/abs/2505.14068v3)|[link](https://github.com/cv4ra/sota-place-recognitioner)| 25 | |**2025-05-18**|**VGGT-SLAM: Dense RGB SLAM Optimized on the SL(4) Manifold**|Dominic Maggio et.al.|[2505.12549v2](http://arxiv.org/abs/2505.12549v2)|null| 26 | |**2025-05-18**|**Is Semantic SLAM Ready for Embedded Systems ? A Comparative Survey**|Calvin Galagain et.al.|[2505.12384v1](http://arxiv.org/abs/2505.12384v1)|null| 27 | |**2025-05-16**|**EgoDex: Learning Dexterous Manipulation from Large-Scale Egocentric Video**|Ryan Hoque et.al.|[2505.11709v1](http://arxiv.org/abs/2505.11709v1)|null| 28 | |**2025-05-16**|**Improved Bag-of-Words Image Retrieval with Geometric Constraints for Ground Texture Localization**|Aaron Wilhelm et.al.|[2505.11620v1](http://arxiv.org/abs/2505.11620v1)|null| 29 | |**2025-05-16**|**Robust 2D lidar-based SLAM in arboreal environments without IMU/GNSS**|Paola Nazate-Burgos et.al.|[2505.10847v1](http://arxiv.org/abs/2505.10847v1)|null| 30 | |**2025-05-15**|**TartanGround: A Large-Scale Dataset for Ground Robot Perception and Navigation**|Manthan Patel et.al.|[2505.10696v1](http://arxiv.org/abs/2505.10696v1)|null| 31 | |**2025-05-15**|**A hybrid SLAM-Payne framework for atmospheric parameter and abundance determination of early-type Stars from LAMOST DR9 low-resolution Spectra**|Weijia Sun et.al.|[2505.10310v1](http://arxiv.org/abs/2505.10310v1)|null| 32 | |**2025-05-15**|**Large-Scale Gaussian Splatting SLAM**|Zhe Xin et.al.|[2505.09915v1](http://arxiv.org/abs/2505.09915v1)|null| 33 | |**2025-05-13**|**Automated Meta Prompt Engineering for Alignment with the Theory of Mind**|Aaron Baughman et.al.|[2505.09024v1](http://arxiv.org/abs/2505.09024v1)|null| 34 | |**2025-05-13**|**MDF: Multi-Modal Data Fusion with CNN-Based Object Detection for Enhanced Indoor Localization Using LiDAR-SLAM**|Saqi Hussain Kalan et.al.|[2505.08388v1](http://arxiv.org/abs/2505.08388v1)|null| 35 | -------------------------------------------------------------------------------- /docs/Robotics/VIO.md: -------------------------------------------------------------------------------- 1 | 2 | ### VIO 3 | |Publish Date|Title|Authors|PDF|Code| 4 | | :---: | :---: | :---: | :---: | :---: | 5 | |**2025-06-05**|**Atomtronic Matter-Wave Optics**|Saurabh Pandey et.al.|[2506.04735v1](http://arxiv.org/abs/2506.04735v1)|null| 6 | |**2025-06-05**|**A Novel Transformer-Based Method for Full Lower-Limb Joint Angles and Moments Prediction in Gait Using sEMG and IMU data**|Farshad Haghgoo Daryakenari et.al.|[2506.04577v1](http://arxiv.org/abs/2506.04577v1)|null| 7 | |**2025-06-05**|**Olfactory Inertial Odometry: Sensor Calibration and Drift Compensation**|Kordel K. France et.al.|[2506.04539v1](http://arxiv.org/abs/2506.04539v1)|null| 8 | |**2025-06-04**|**Photoreal Scene Reconstruction from an Egocentric Device**|Zhaoyang Lv et.al.|[2506.04444v1](http://arxiv.org/abs/2506.04444v1)|[link](https://github.com/facebookresearch/egocentric_splats)| 9 | |**2025-06-04**|**An Intermittent Model for the $1/f$ Spectrum in the Pristine Solar Wind**|Maia Brodiano et.al.|[2506.04366v1](http://arxiv.org/abs/2506.04366v1)|null| 10 | |**2025-06-04**|**cuVSLAM: CUDA accelerated visual odometry**|Alexander Korovko et.al.|[2506.04359v1](http://arxiv.org/abs/2506.04359v1)|null| 11 | |**2025-06-04**|**Experimental and simulative study on laser irradiation of 3D-printed micro-structures at intensities relevant for inertial confinement fusion**|M. Cipriani et.al.|[2506.04017v1](http://arxiv.org/abs/2506.04017v1)|null| 12 | |**2025-06-03**|**Implicit Regularization of the Deep Inverse Prior Trained with Inertia**|Nathan Buskulic et.al.|[2506.02986v1](http://arxiv.org/abs/2506.02986v1)|null| 13 | |**2025-06-03**|**Olfactory Inertial Odometry: Methodology for Effective Robot Navigation by Scent**|Kordel K. France et.al.|[2506.02373v1](http://arxiv.org/abs/2506.02373v1)|null| 14 | |**2025-06-02**|**Particle-in-Cell Simulations of Burning ICF Capsule Implosions**|Johannes J. van de Wetering et.al.|[2506.02273v1](http://arxiv.org/abs/2506.02273v1)|null| 15 | |**2025-06-02**|**EPFL-Smart-Kitchen-30: Densely annotated cooking dataset with 3D kinematics to challenge video and language models**|Andy Bonnetto et.al.|[2506.01608v1](http://arxiv.org/abs/2506.01608v1)|null| 16 | |**2025-06-02**|**Equivalence of Left- and Right-Invariant Extended Kalman Filters on Matrix Lie Groups**|Finn G. Maurer et.al.|[2506.01514v1](http://arxiv.org/abs/2506.01514v1)|null| 17 | |**2025-06-01**|**Fast synthesis of turbulence with multi-scale coherent vortices**|Zishuo Han et.al.|[2506.01022v1](http://arxiv.org/abs/2506.01022v1)|null| 18 | |**2025-05-31**|**Real-Time Sounding in ISAC networks: Design and Implementation of a Multi-Node Testbed with Synchronized Airborne and Ground-Based Sensors**|Julia Beuster et.al.|[2506.00624v1](http://arxiv.org/abs/2506.00624v1)|null| 19 | |**2025-05-31**|**Flying Co-Stereo: Enabling Long-Range Aerial Dense Mapping via Collaborative Stereo Vision of Dynamic-Baseline**|Zhaoying Wang et.al.|[2506.00546v1](http://arxiv.org/abs/2506.00546v1)|null| 20 | |**2025-05-31**|**Jet breakup dynamics of viscoelastic carboxymethyl cellulose solutions**|Ketan Vinayak Warghat et.al.|[2506.00516v1](http://arxiv.org/abs/2506.00516v1)|null| 21 | |**2025-05-30**|**Resonance density range governs two-plasmon decay saturation and enables hot-electron prediction in inertial confinement fusion**|C. Yao et.al.|[2505.24607v1](http://arxiv.org/abs/2505.24607v1)|null| 22 | |**2025-05-30**|**Boosting Automatic Exercise Evaluation Through Musculoskeletal Simulation-Based IMU Data Augmentation**|Andreas Spilz et.al.|[2505.24415v1](http://arxiv.org/abs/2505.24415v1)|null| 23 | |**2025-05-29**|**System Identification for Virtual Sensor-Based Model Predictive Control: Application to a 2-DoF Direct-Drive Robotic Arm**|Kosei Tsuji et.al.|[2505.23138v1](http://arxiv.org/abs/2505.23138v1)|null| 24 | |**2025-05-28**|**MAC-Gaze: Motion-Aware Continual Calibration for Mobile Gaze Tracking**|Yaxiong Lei et.al.|[2505.22769v3](http://arxiv.org/abs/2505.22769v3)|null| 25 | |**2025-05-28**|**Intermittency in Interplanetary Coronal Mass Ejections Observed by Parker Solar Probe and Solar Orbiter**|Julia Ruohotie et.al.|[2505.22283v1](http://arxiv.org/abs/2505.22283v1)|null| 26 | |**2025-05-27**|**Label Leakage in Federated Inertial-based Human Activity Recognition**|Marius Bock et.al.|[2505.20924v1](http://arxiv.org/abs/2505.20924v1)|[link](https://github.com/mariusbock/leakage_har)| 27 | |**2025-05-27**|**Load Balancing in Strongly Inhomogeneous Simulations -- a Vlasiator Case Study**|Leo Kotipalo et.al.|[2505.20908v1](http://arxiv.org/abs/2505.20908v1)|null| 28 | |**2025-05-27**|**HS-SLAM: A Fast and Hybrid Strategy-Based SLAM Approach for Low-Speed Autonomous Driving**|Bingxiang Kang et.al.|[2505.20906v1](http://arxiv.org/abs/2505.20906v1)|null| 29 | |**2025-05-27**|**DeepConvContext: A Multi-Scale Approach to Timeseries Classification in Human Activity Recognition**|Marius Bock et.al.|[2505.20894v1](http://arxiv.org/abs/2505.20894v1)|[link](https://github.com/mariusbock/context_har)| 30 | |**2025-05-27**|**MoPFormer: Motion-Primitive Transformer for Wearable-Sensor Activity Recognition**|Hao Zhang et.al.|[2505.20744v1](http://arxiv.org/abs/2505.20744v1)|null| 31 | |**2025-05-27**|**Detecting Informative Channels: ActionFormer**|Kunpeng Zhao et.al.|[2505.20739v1](http://arxiv.org/abs/2505.20739v1)|null| 32 | |**2025-05-27**|**Seeing through the light cone: Visualizing electromagnetic fields in special relativity**|Daiju Nakayama et.al.|[2505.20596v1](http://arxiv.org/abs/2505.20596v1)|null| 33 | |**2025-05-26**|**Role of settling inertial particles in modulating flow structures and drag in Taylor-Couette turbulence**|Hao Jiang et.al.|[2505.19859v1](http://arxiv.org/abs/2505.19859v1)|null| 34 | |**2025-05-25**|**Orbital Decay of the Ultra-Hot Jupiter TOI-2109b: Tidal Constraints and Transit-Timing Analysis**|Jaime A. Alvarado-Montes et.al.|[2505.18941v2](http://arxiv.org/abs/2505.18941v2)|null| 35 | -------------------------------------------------------------------------------- /docs/Robotics/VO.md: -------------------------------------------------------------------------------- 1 | 2 | ### VO 3 | |Publish Date|Title|Authors|PDF|Code| 4 | | :---: | :---: | :---: | :---: | :---: | 5 | |**2025-06-05**|**Olfactory Inertial Odometry: Sensor Calibration and Drift Compensation**|Kordel K. France et.al.|[2506.04539v1](http://arxiv.org/abs/2506.04539v1)|null| 6 | |**2025-06-04**|**Photoreal Scene Reconstruction from an Egocentric Device**|Zhaoyang Lv et.al.|[2506.04444v1](http://arxiv.org/abs/2506.04444v1)|[link](https://github.com/facebookresearch/egocentric_splats)| 7 | |**2025-06-04**|**cuVSLAM: CUDA accelerated visual odometry**|Alexander Korovko et.al.|[2506.04359v1](http://arxiv.org/abs/2506.04359v1)|null| 8 | |**2025-06-03**|**Olfactory Inertial Odometry: Methodology for Effective Robot Navigation by Scent**|Kordel K. France et.al.|[2506.02373v1](http://arxiv.org/abs/2506.02373v1)|null| 9 | |**2025-05-22**|**D-LIO: 6DoF Direct LiDAR-Inertial Odometry based on Simultaneous Truncated Distance Field Mapping**|Lucia Coto-Elena et.al.|[2505.16726v1](http://arxiv.org/abs/2505.16726v1)|[link](https://github.com/robotics-upo/D-LIO)| 10 | |**2025-05-21**|**Learning-based Airflow Inertial Odometry for MAVs using Thermal Anemometers in a GPS and vision denied environment**|Ze Wang et.al.|[2505.15044v1](http://arxiv.org/abs/2505.15044v1)|null| 11 | |**2025-05-19**|**eStonefish-scenes: A synthetically generated dataset for underwater event-based optical flow prediction tasks**|Jad Mansour et.al.|[2505.13309v1](http://arxiv.org/abs/2505.13309v1)|null| 12 | |**2025-05-19**|**MSCEKF-MIO: Magnetic-Inertial Odometry Based on Multi-State Constraint Extended Kalman Filter**|Jiazhu Li et.al.|[2505.12634v2](http://arxiv.org/abs/2505.12634v2)|null| 13 | |**2025-05-18**|**Robust Reinforcement Learning-Based Locomotion for Resource-Constrained Quadrupeds with Exteroceptive Sensing**|Davide Plozza et.al.|[2505.12537v1](http://arxiv.org/abs/2505.12537v1)|[link](https://github.com/eth-pbl/elmap-rl-controller)| 14 | |**2025-05-18**|**Structureless VIO**|Junlin Song et.al.|[2505.12337v1](http://arxiv.org/abs/2505.12337v1)|null| 15 | |**2025-05-18**|**DNOI-4DRO: Deep 4D Radar Odometry with Differentiable Neural-Optimization Iterations**|Shouyi Lu et.al.|[2505.12310v1](http://arxiv.org/abs/2505.12310v1)|null| 16 | |**2025-05-16**|**Planar Velocity Estimation for Fast-Moving Mobile Robots Using Event-Based Optical Flow**|Liam Boyle et.al.|[2505.11116v1](http://arxiv.org/abs/2505.11116v1)|null| 17 | |**2025-05-14**|**Neural Inertial Odometry from Lie Events**|Royina Karegoudra Jayanth et.al.|[2505.09780v1](http://arxiv.org/abs/2505.09780v1)|[link](https://github.com/RoyinaJayanth/NIO_Lie_Events)| 18 | |**2025-05-14**|**VGC-RIO: A Tightly Integrated Radar-Inertial Odometry with Spatial Weighted Doppler Velocity and Local Geometric Constrained RCS Histograms**|Jianguang Xiang et.al.|[2505.09103v2](http://arxiv.org/abs/2505.09103v2)|null| 19 | |**2025-05-12**|**FD-RIO: Fast Dense Radar Inertial Odometry**|Nader J. Abu-Alrub et.al.|[2505.07694v1](http://arxiv.org/abs/2505.07694v1)|null| 20 | |**2025-05-12**|**Integrated Localization and Path Planning for an Ocean Exploring Team of Autonomous Underwater Vehicles with Consensus Graph Model Predictive Control**|Mohsen Eskandari et.al.|[2505.07484v1](http://arxiv.org/abs/2505.07484v1)|null| 21 | |**2025-05-12**|**TPT-Bench: A Large-Scale, Long-Term and Robot-Egocentric Dataset for Benchmarking Target Person Tracking**|Hanjing Ye et.al.|[2505.07446v1](http://arxiv.org/abs/2505.07446v1)|null| 22 | |**2025-05-10**|**Learned IMU Bias Prediction for Invariant Visual Inertial Odometry**|Abdullah Altawaitan et.al.|[2505.06748v1](http://arxiv.org/abs/2505.06748v1)|null| 23 | |**2025-05-10**|**Edge-Enabled VIO with Long-Tracked Features for High-Accuracy Low-Altitude IoT Navigation**|Xiaohong Huang et.al.|[2505.06517v1](http://arxiv.org/abs/2505.06517v1)|[link](https://github.com/xiaohong-huang/FLOW-VIO)| 24 | |**2025-05-10**|**CompSLAM: Complementary Hierarchical Multi-Modal Localization and Mapping for Robot Autonomy in Underground Environments**|Shehryar Khattak et.al.|[2505.06483v1](http://arxiv.org/abs/2505.06483v1)|null| 25 | |**2025-05-07**|**Do We Still Need to Work on Odometry for Autonomous Driving?**|Cedric Le Gentil et.al.|[2505.04438v1](http://arxiv.org/abs/2505.04438v1)|null| 26 | |**2025-05-06**|**Thermal-LiDAR Fusion for Robust Tunnel Localization in GNSS-Denied and Low-Visibility Conditions**|Lukas Schichler et.al.|[2505.03565v1](http://arxiv.org/abs/2505.03565v1)|null| 27 | |**2025-05-04**|**Robust Localization, Mapping, and Navigation for Quadruped Robots**|Dyuman Aditya et.al.|[2505.02272v2](http://arxiv.org/abs/2505.02272v2)|null| 28 | |**2025-05-04**|**Enhancing Lidar Point Cloud Sampling via Colorization and Super-Resolution of Lidar Imagery**|Sier Ha et.al.|[2505.02049v1](http://arxiv.org/abs/2505.02049v1)|null| 29 | |**2025-05-04**|**SafeNav: Safe Path Navigation using Landmark Based Localization in a GPS-denied Environment**|Ganesh Sapkota et.al.|[2505.01956v2](http://arxiv.org/abs/2505.01956v2)|null| 30 | |**2025-05-02**|**Toward Teach and Repeat Across Seasonal Deep Snow Accumulation**|Matěj Boxan et.al.|[2505.01339v1](http://arxiv.org/abs/2505.01339v1)|null| 31 | |**2025-05-02**|**Tightly Coupled Range Inertial Odometry and Mapping with Exact Point Cloud Downsampling**|Kenji Koide et.al.|[2505.01017v1](http://arxiv.org/abs/2505.01017v1)|null| 32 | |**2025-05-02**|**Optimizing Indoor Farm Monitoring Efficiency Using UAV: Yield Estimation in a GNSS-Denied Cherry Tomato Greenhouse**|Taewook Park et.al.|[2505.00995v1](http://arxiv.org/abs/2505.00995v1)|null| 33 | |**2025-05-01**|**Fault-Tolerant Multi-Modal Localization of Multi-Robots on Matrix Lie Groups**|Mahboubeh Zarei et.al.|[2505.00842v1](http://arxiv.org/abs/2505.00842v1)|null| 34 | |**2025-04-30**|**An Underwater, Fault-Tolerant, Laser-Aided Robotic Multi-Modal Dense SLAM System for Continuous Underwater In-Situ Observation**|Yaming Ou et.al.|[2504.21826v1](http://arxiv.org/abs/2504.21826v1)|null| 35 | -------------------------------------------------------------------------------- /docs/Robotics/Visual Localization.md: -------------------------------------------------------------------------------- 1 | 2 | ### Visual Localization 3 | |Publish Date|Title|Authors|PDF|Code| 4 | | :---: | :---: | :---: | :---: | :---: | 5 | |**2025-06-05**|**Revisiting Depth Representations for Feed-Forward 3D Gaussian Splatting**|Duochao Shi et.al.|[2506.05327v1](http://arxiv.org/abs/2506.05327v1)|null| 6 | |**2025-06-05**|**Video World Models with Long-term Spatial Memory**|Tong Wu et.al.|[2506.05284v1](http://arxiv.org/abs/2506.05284v1)|null| 7 | |**2025-06-05**|**Follow-Your-Motion: Video Motion Transfer via Efficient Spatial-Temporal Decoupled Finetuning**|Yue Ma et.al.|[2506.05207v1](http://arxiv.org/abs/2506.05207v1)|null| 8 | |**2025-06-05**|**OGGSplat: Open Gaussian Growing for Generalizable Reconstruction with Expanded Field-of-View**|Yanbo Wang et.al.|[2506.05204v1](http://arxiv.org/abs/2506.05204v1)|[link](https://github.com/Yanbo-23/OGGSplat)| 9 | |**2025-06-05**|**Vision-Based Autonomous MM-Wave Reflector Using ArUco-Driven Angle-of-Arrival Estimation**|Josue Marroquin et.al.|[2506.05195v1](http://arxiv.org/abs/2506.05195v1)|null| 10 | |**2025-06-05**|**FRED: The Florence RGB-Event Drone Dataset**|Gabriele Magrini et.al.|[2506.05163v1](http://arxiv.org/abs/2506.05163v1)|null| 11 | |**2025-06-05**|**UAV4D: Dynamic Neural Rendering of Human-Centric UAV Imagery using Gaussian Splatting**|Jaehoon Choi et.al.|[2506.05011v1](http://arxiv.org/abs/2506.05011v1)|null| 12 | |**2025-06-05**|**Structure-Aware Radar-Camera Depth Estimation**|Fuyi Zhang et.al.|[2506.05008v1](http://arxiv.org/abs/2506.05008v1)|null| 13 | |**2025-06-05**|**Bayesian network 3D event reconstruction in the Cygno optical TPC for dark matter direct detection**|Fernando Domingues Amaro et.al.|[2506.04973v1](http://arxiv.org/abs/2506.04973v1)|null| 14 | |**2025-06-05**|**CzechLynx: A Dataset for Individual Identification and Pose Estimation of the Eurasian Lynx**|Lukas Picek et.al.|[2506.04931v1](http://arxiv.org/abs/2506.04931v1)|null| 15 | |**2025-06-05**|**Fool the Stoplight: Realistic Adversarial Patch Attacks on Traffic Light Detectors**|Svetlana Pavlitska et.al.|[2506.04823v1](http://arxiv.org/abs/2506.04823v1)|null| 16 | |**2025-06-05**|**Spike-TBR: a Noise Resilient Neuromorphic Event Representation**|Gabriele Magrini. Federico Becattini et.al.|[2506.04817v1](http://arxiv.org/abs/2506.04817v1)|null| 17 | |**2025-06-05**|**VoxDet: Rethinking 3D Semantic Occupancy Prediction as Dense Object Detection**|Wuyang Li et.al.|[2506.04623v1](http://arxiv.org/abs/2506.04623v1)|null| 18 | |**2025-06-05**|**Deep Learning Reforms Image Matching: A Survey and Outlook**|Shihua Zhang et.al.|[2506.04619v1](http://arxiv.org/abs/2506.04619v1)|null| 19 | |**2025-06-05**|**Follow-Your-Creation: Empowering 4D Creation through Video Inpainting**|Yue Ma et.al.|[2506.04590v1](http://arxiv.org/abs/2506.04590v1)|null| 20 | |**2025-06-05**|**Handle-based Mesh Deformation Guided By Vision Language Model**|Xingpeng Sun et.al.|[2506.04562v1](http://arxiv.org/abs/2506.04562v1)|null| 21 | |**2025-06-04**|**Photoreal Scene Reconstruction from an Egocentric Device**|Zhaoyang Lv et.al.|[2506.04444v1](http://arxiv.org/abs/2506.04444v1)|[link](https://github.com/facebookresearch/egocentric_splats)| 22 | |**2025-06-04**|**MELABenchv1: Benchmarking Large Language Models against Smaller Fine-Tuned Models for Low-Resource Maltese NLP**|Kurt Micallef et.al.|[2506.04385v1](http://arxiv.org/abs/2506.04385v1)|null| 23 | |**2025-06-04**|**Puck Localization Using Contextual Cues**|Liam Salass et.al.|[2506.04365v1](http://arxiv.org/abs/2506.04365v1)|null| 24 | |**2025-06-04**|**cuVSLAM: CUDA accelerated visual odometry**|Alexander Korovko et.al.|[2506.04359v1](http://arxiv.org/abs/2506.04359v1)|null| 25 | |**2025-06-04**|**Voyager: Long-Range and World-Consistent Video Diffusion for Explorable 3D Scene Generation**|Tianyu Huang et.al.|[2506.04225v1](http://arxiv.org/abs/2506.04225v1)|null| 26 | |**2025-06-04**|**Seeing in the Dark: Benchmarking Egocentric 3D Vision with the Oxford Day-and-Night Dataset**|Zirui Wang et.al.|[2506.04224v1](http://arxiv.org/abs/2506.04224v1)|null| 27 | |**2025-06-04**|**Diffusion Domain Teacher: Diffusion Guided Domain Adaptive Object Detector**|Boyong He et.al.|[2506.04211v1](http://arxiv.org/abs/2506.04211v1)|[link](https://github.com/heboyong/Diffusion-Domain-Teacher)| 28 | |**2025-06-04**|**Splatting Physical Scenes: End-to-End Real-to-Sim from Imperfect Robot Data**|Ben Moran et.al.|[2506.04120v1](http://arxiv.org/abs/2506.04120v1)|null| 29 | |**2025-06-04**|**Collaborative On-Sensor Array Cameras**|Jipeng Sun et.al.|[2506.04061v1](http://arxiv.org/abs/2506.04061v1)|null| 30 | |**2025-06-04**|**EV-Flying: an Event-based Dataset for In-The-Wild Recognition of Flying Objects**|Gabriele Magrini et.al.|[2506.04048v1](http://arxiv.org/abs/2506.04048v1)|null| 31 | |**2025-06-04**|**Learning from Noise: Enhancing DNNs for Event-Based Vision through Controlled Noise Injection**|Marcin Kowalczyk et.al.|[2506.03918v1](http://arxiv.org/abs/2506.03918v1)|null| 32 | |**2025-06-04**|**Enhancing Safety of Foundation Models for Visual Navigation through Collision Avoidance via Repulsive Estimation**|Joonkyung Kim et.al.|[2506.03834v1](http://arxiv.org/abs/2506.03834v1)|null| 33 | |**2025-06-04**|**Phase stabilization and phase tuning of an optical lattice with a variable period**|P. A. Aksentsev et.al.|[2506.03809v1](http://arxiv.org/abs/2506.03809v1)|null| 34 | |**2025-06-04**|**YOND: Practical Blind Raw Image Denoising Free from Camera-Specific Data Dependency**|Hansen Feng et.al.|[2506.03645v1](http://arxiv.org/abs/2506.03645v1)|null| 35 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- encoding: utf-8 -*- 3 | """ 4 | @File : daily_arxiv.py 5 | @Time : 2021-10-29 22:34:09 6 | @Author : Bingjie Yan 7 | @Email : bj.yan.pa@qq.com 8 | @License : Apache License 2.0 9 | """ 10 | 11 | import json.decoder 12 | import os.path 13 | import shutil 14 | 15 | from gevent import monkey 16 | 17 | monkey.patch_all() 18 | import gevent 19 | from gevent.queue import Queue 20 | from datetime import datetime 21 | import requests 22 | import arxiv 23 | import yaml 24 | 25 | from fire import Fire 26 | 27 | from config import ( 28 | SERVER_PATH_TOPIC, 29 | SERVER_DIR_STORAGE, 30 | SERVER_PATH_README, 31 | SERVER_PATH_DOCS, 32 | SERVER_PATH_STORAGE_MD, 33 | TIME_ZONE_CN, 34 | logger 35 | ) 36 | 37 | 38 | class ToolBox: 39 | @staticmethod 40 | def log_date(mode="log"): 41 | if mode == "log": 42 | return str(datetime.now(TIME_ZONE_CN)).split(".")[0] 43 | elif mode == "file": 44 | return str(datetime.now(TIME_ZONE_CN)).split(" ")[0] 45 | 46 | @staticmethod 47 | def get_yaml_data() -> dict: 48 | with open(SERVER_PATH_TOPIC, "r", encoding="utf8") as f: 49 | data = yaml.load(f, Loader=yaml.SafeLoader) 50 | print(data) 51 | return data 52 | 53 | @staticmethod 54 | def handle_html(url: str): 55 | headers = { 56 | "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) " 57 | "Chrome/95.0.4638.69 Safari/537.36 Edg/95.0.1020.44" 58 | } 59 | proxies = {"http": None, "https": None} 60 | session = requests.session() 61 | response = session.get(url, headers=headers, proxies=proxies) 62 | try: 63 | data_ = response.json() 64 | return data_ 65 | except json.decoder.JSONDecodeError as e: 66 | logger.error(e) 67 | 68 | 69 | class CoroutineSpeedup: 70 | """轻量化的协程控件""" 71 | 72 | def __init__( 73 | self, 74 | work_q: Queue = None, 75 | task_docker=None, 76 | ): 77 | # 任务容器:queue 78 | self.worker = work_q if work_q else Queue() 79 | self.channel = Queue() 80 | # 任务容器:迭代器 81 | self.task_docker = task_docker 82 | # 协程数 83 | self.power = 32 84 | # 任务队列满载时刻长度 85 | self.max_queue_size = 0 86 | 87 | self.cache_space = [] 88 | 89 | self.max_results = 30 90 | 91 | def _adaptor(self): 92 | while not self.worker.empty(): 93 | task: dict = self.worker.get_nowait() 94 | if task.get("pending"): 95 | self.runtime(context=task.get("pending")) 96 | elif task.get("response"): 97 | self.parse(context=task) 98 | 99 | def _progress(self): 100 | p = self.max_queue_size - self.worker.qsize() - self.power 101 | p = 0 if p < 1 else p 102 | return p 103 | 104 | def runtime(self, context: dict): 105 | keyword_ = context.get("keyword") 106 | 107 | res = arxiv.Search( 108 | query=keyword_, 109 | max_results=self.max_results, 110 | sort_by=arxiv.SortCriterion.SubmittedDate 111 | ).results() 112 | 113 | context.update({"response": res, "hook": context}) 114 | self.worker.put_nowait(context) 115 | 116 | def parse(self, context): 117 | base_url = "https://arxiv.paperswithcode.com/api/v0/papers/" 118 | _paper = {} 119 | arxiv_res = context.get("response") 120 | for result in arxiv_res: 121 | paper_id = result.get_short_id() 122 | paper_title = result.title 123 | paper_url = result.entry_id 124 | 125 | code_url = base_url + paper_id 126 | paper_first_author = result.authors[0] 127 | 128 | publish_time = result.published.date() 129 | 130 | ver_pos = paper_id.find('v') 131 | paper_key = paper_id if ver_pos == -1 else paper_id[0:ver_pos] 132 | 133 | # 尝试获取仓库代码 134 | # ---------------------------------------------------------------------------------- 135 | # Origin(r) 136 | # ---------------------------------------------------------------------------------- 137 | # { 138 | # 'paper_url': 'https://', 139 | # 'official': {'url': 'https://github.com/nyu-wireless/mmwRobotNav'}, 140 | # 'all_official': [{'url': 'https://github.com/nyu-wireless/mmwRobotNav'}], 141 | # 'unofficial_count': 0, 142 | # 'frameworks': [], 143 | # 'status': 'OK' 144 | # } 145 | # ---------------------------------------------------------------------------------- 146 | # None(r) 147 | # ---------------------------------------------------------------------------------- 148 | # { 149 | # 'paper_url': 'https://', 150 | # 'official': None, 151 | # 'all_official': [], 152 | # 'unofficial_count': 0, 153 | # 'frameworks': [], 154 | # 'status': 'OK' 155 | # } 156 | response = ToolBox.handle_html(code_url) 157 | official_ = response.get("official") 158 | repo_url = official_.get("url", "null") if official_ else "null" 159 | # ---------------------------------------------------------------------------------- 160 | # 编排模型 161 | # ---------------------------------------------------------------------------------- 162 | # IF repo 163 | # |publish_time|paper_title|paper_first_author|[paper_id](paper_url)|`[link](url)` 164 | # ELSE 165 | # |publish_time|paper_title|paper_first_author|[paper_id](paper_url)|`null` 166 | _paper.update({ 167 | paper_key: { 168 | "publish_time": publish_time, 169 | "title": paper_title, 170 | "authors": f"{paper_first_author} et.al.", 171 | "id": paper_id, 172 | "paper_url": paper_url, 173 | "repo": repo_url 174 | }, 175 | }) 176 | self.channel.put_nowait({ 177 | "paper": _paper, 178 | "topic": context["hook"]["topic"], 179 | "subtopic": context["hook"]["subtopic"], 180 | "fields": ["Publish Date", "Title", "Authors", "PDF", "Code"] 181 | }) 182 | logger.success( 183 | f"handle [{self.channel.qsize()}/{self.max_queue_size}]" 184 | f" | topic=`{context['topic']}` subtopic=`{context['hook']['subtopic']}`") 185 | 186 | def offload_tasks(self): 187 | if self.task_docker: 188 | for task in self.task_docker: 189 | self.worker.put_nowait({"pending": task}) 190 | self.max_queue_size = self.worker.qsize() 191 | 192 | def overload_tasks(self): 193 | ot = _OverloadTasks() 194 | file_obj: dict = {} 195 | while not self.channel.empty(): 196 | # 将上下文替换成 Markdown 语法文本 197 | context: dict = self.channel.get() 198 | md_obj: dict = ot.to_markdown(context) 199 | 200 | # 子主题分流 201 | if not file_obj.get(md_obj["hook"]): 202 | file_obj[md_obj["hook"]] = md_obj["hook"] 203 | file_obj[md_obj["hook"]] += md_obj["content"] 204 | 205 | # 生成 mkdocs 所需文件 206 | os.makedirs(os.path.join(SERVER_PATH_DOCS, f'{context["topic"]}'), exist_ok=True) 207 | with open(os.path.join(SERVER_PATH_DOCS, f'{context["topic"]}', f'{context["subtopic"]}.md'), 'w') as f: 208 | f.write(md_obj["content"]) 209 | 210 | 211 | # 生成 Markdown 模板文件 212 | template_ = ot.generate_markdown_template( 213 | content="".join(list(file_obj.values()))) 214 | # 存储 Markdown 模板文件 215 | ot.storage(template_, obj_="database") 216 | 217 | return template_ 218 | 219 | def go(self, power: int): 220 | # 任务重载 221 | self.offload_tasks() 222 | # 配置弹性采集功率 223 | if self.max_queue_size != 0: 224 | self.power = self.max_queue_size if power > self.max_queue_size else power 225 | # 任务启动 226 | task_list = [] 227 | for _ in range(self.power): 228 | task = gevent.spawn(self._adaptor) 229 | task_list.append(task) 230 | gevent.joinall(task_list) 231 | 232 | 233 | class _OverloadTasks: 234 | def __init__(self): 235 | self._build() 236 | 237 | # yyyy-mm-dd 238 | self.update_time = ToolBox.log_date(mode="log") 239 | 240 | self.storage_path_by_date = SERVER_PATH_STORAGE_MD.format( 241 | ToolBox.log_date('file')) 242 | self.storage_path_readme = SERVER_PATH_README 243 | self.storage_path_docs = SERVER_PATH_DOCS 244 | 245 | # ------------------- 246 | # Private API 247 | # ------------------- 248 | @staticmethod 249 | def _build(): 250 | if not os.path.exists(SERVER_DIR_STORAGE): 251 | os.mkdir(SERVER_DIR_STORAGE) 252 | 253 | @staticmethod 254 | def _set_markdown_hyperlink(text, link): 255 | return f"[{text}]({link})" 256 | 257 | def _generate_markdown_table_content(self, paper: dict): 258 | paper['publish_time'] = f"**{paper['publish_time']}**" 259 | paper['title'] = f"**{paper['title']}**" 260 | _pdf = self._set_markdown_hyperlink( 261 | text=paper['id'], link=paper['paper_url']) 262 | _repo = self._set_markdown_hyperlink( 263 | text="link", link=paper['repo']) if "http" in paper['repo'] else "null" 264 | 265 | line = f"|{paper['publish_time']}" \ 266 | f"|{paper['title']}" \ 267 | f"|{paper['authors']}" \ 268 | f"|{_pdf}" \ 269 | f"|{_repo}|\n" 270 | 271 | return line 272 | 273 | @staticmethod 274 | def _set_style_to(style: str = "center"): 275 | return " :---: " if style == "center" else " --- " 276 | 277 | # ------------------- 278 | # Public API 279 | # ------------------- 280 | def storage(self, template: str, obj_: str = "database"): 281 | """ 282 | 将 Markdown 模板存档 283 | @param template: 284 | @param obj_: database:将 Markdown 模板存档至 database/store 中。其他值,替换根目录下的 README 285 | @return: 286 | """ 287 | path_factory = { 288 | 'database': self.storage_path_by_date, 289 | 'readme': self.storage_path_readme, 290 | 'docs': self.storage_path_docs 291 | } 292 | if obj_ not in path_factory.keys(): 293 | path_ = path_factory['readme'] 294 | else: 295 | path_ = path_factory[obj_] 296 | with open(path_, "w", encoding="utf8") as f: 297 | for i in template: 298 | f.write(i) 299 | 300 | def generate_markdown_template(self, content: str): 301 | _project = f"# arxiv-daily\n" 302 | _pin = f" Automated deployment @ {self.update_time} Asia/Shanghai\n" 303 | _tos = "> Welcome to contribute! Add your topics and keywords in " \ 304 | "[`topic.yml`](https://github.com/weiningwei/arxiv-daily/blob/main/database/topic.yml).\n" 305 | _tos += "> You can also view historical data through the " \ 306 | "[storage](https://github.com/weiningwei/arxiv-daily/blob/main/database/storage).\n" 307 | 308 | _form = _project + _pin + _tos + content 309 | 310 | return _form 311 | 312 | def to_markdown(self, context: dict) -> dict: 313 | _fields = context["fields"] 314 | _topic = context["topic"] 315 | _subtopic = context["subtopic"] 316 | _paper_obj = context["paper"] 317 | 318 | _topic_md = f"\n## {_topic}\n" 319 | _subtopic_md = f"\n### {_subtopic}\n" 320 | _fields_md = f"|{'|'.join(_fields)}|\n" 321 | _style_md = f"|{'|'.join([self._set_style_to('center') for _ in range(len(_fields))])}|\n" 322 | table_lines = "".join([self._generate_markdown_table_content( 323 | paper) for paper in _paper_obj.values()]) 324 | 325 | _content_md = _subtopic_md + _fields_md + _style_md + table_lines 326 | 327 | return {"hook": _topic_md, "content": _content_md} 328 | 329 | 330 | class Scaffold: 331 | def __init__(self): 332 | pass 333 | 334 | @staticmethod 335 | @logger.catch() 336 | def run(env: str = "development", power: int = 16): 337 | """ 338 | Start the test sample. 339 | 340 | Usage: python daily_arxiv.py run 341 | or: python daily_arxiv.py run --env=production 生产环境下运行 342 | 343 | @param power: synergy power. The recommended value interval is [2,16].The default value is 37. 344 | @param env: Optional with [development production] 345 | @return: 346 | """ 347 | # Get tasks 348 | context = ToolBox.get_yaml_data() 349 | 350 | # Set tasks 351 | pending_atomic = [{"subtopic": subtopic, "keyword": keyword.replace('"', ""), "topic": topic} 352 | for topic, subtopics in context.items() for subtopic, keyword in subtopics.items()] 353 | 354 | # Offload tasks 355 | booster = CoroutineSpeedup(task_docker=pending_atomic) 356 | booster.go(power=power) 357 | 358 | # Overload tasks 359 | template_ = booster.overload_tasks() 360 | 361 | # Replace project README file. 362 | if env == "production": 363 | with open(SERVER_PATH_README, "w", encoding="utf8") as f: 364 | for i in template_: 365 | f.write(i) 366 | 367 | shutil.copyfile(SERVER_PATH_README, os.path.join(SERVER_PATH_DOCS, "index.md")) 368 | 369 | if __name__ == "__main__": 370 | Fire(Scaffold) 371 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: arxiv-daily 2 | 3 | theme: 4 | name: material 5 | custom_dir: overrides 6 | features: 7 | - navigation.indexes 8 | 9 | repo_url: https://github.com/weiningwei/arxiv-daily 10 | 11 | markdown_extensions: 12 | - def_list 13 | - pymdownx.tasklist: 14 | custom_checkbox: true 15 | - attr_list 16 | - md_in_html 17 | - pymdownx.emoji: 18 | emoji_index: !!python/name:materialx.emoji.twemoji 19 | emoji_generator: !!python/name:materialx.emoji.to_svg 20 | 21 | plugins: 22 | - search: 23 | lang: 24 | - en 25 | - ja 26 | 27 | extra: 28 | analytics: 29 | provider: google 30 | property: UA-145083103-1 31 | -------------------------------------------------------------------------------- /overrides/main.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block disqus %} 4 | 17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /requirements-mkdocs.txt: -------------------------------------------------------------------------------- 1 | mkdocs 2 | mkdocs-material 3 | pymdown-extensions 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | arxiv 2 | requests 3 | 4 | gevent 5 | pyyaml 6 | loguru 7 | pytz 8 | fire 9 | --------------------------------------------------------------------------------