Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update dead links #640

Merged
merged 2 commits into from
Jan 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
> <span style="color:green">**NOTE !**</span> </br>
> Since there was no velocity source coming from the vehicle during all these tests, the twist message coming from GNSS/INS was given to ekf_localizer as the linear&angular velocity source. </br>
> In order to understand whether this increases the error in cases where the GNSS/INS error increases in the tunnel and how it affects the system, localization in the tunnel was tested by giving only the pose from the NDT, without giving this velocity to ekf_localizer. </br>
> The video of this test is [here](https://www.youtube.com/watch?v=ajgedIwwuaM). </br>
> The video of this test is [here](https://youtu.be/6On130bjQUY?si=vumtij7a66WBIV3z). </br>
> As seen in the video, when velocity is not given, localization in the tunnel deteriorates more quickly.
> It is also predicted that if the IMU Twist message combined (/localization/twist_estimator/twist_with_covariance) with the linear velocity from the vehicle is given instead of the GNSS/INS Twist message, the performance in the tunnel will increase. However, this test cannot be done with the current data.

Expand Down Expand Up @@ -55,7 +55,7 @@
```

> <span style="color:green">**NOTE !**</span></br>
> You also need to add `lanelet2_map.osm` file to autoware_ista_map folder. Since no lanelet file is created for this map at the

Check warning on line 58 in docs/tutorials/components_evaluation/localization_evaluation/urban-environment-evaluation.md

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (ista)
> moment, you can run any `lanelet2_map.osm` file by placing it in this folder.

2.) Download the test rosbag files.
Expand Down Expand Up @@ -133,7 +133,7 @@
```

> <span style="color:green">**NOTE !**</span></br>
> You also need to add `lanelet2_map.osm` file to autoware_ista_map folder. Since no lanelet file is created for this map at the

Check warning on line 136 in docs/tutorials/components_evaluation/localization_evaluation/urban-environment-evaluation.md

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (ista)
> moment, you can run any `lanelet2_map.osm` file by placing it in this folder.

2.) Download the test rosbag files.
Expand Down Expand Up @@ -182,14 +182,14 @@
#### Test 1: Simple Test of Localization

Simply put, how localization works in an urban environment was tested and the results were recorded on video.
Here is the [test video](https://youtu.be/Bk4Oyk6FOg0?t=6).
Here is the [test video](https://youtu.be/DQsk3rY7NjY?si=NkJYIZoPd6HqLIHp).
[<img src="https://github.com/user-attachments/assets/e0f7edbf-0596-4806-8dcd-b4156584e4c0" width="60%">](https://youtu.be/Bk4Oyk6FOg0?t=6")

We can see from video that there is a localization error in the longitudinal axis along the Eurasia tunnel. As expected, NDT based localization does not work properly here. However, since the NDT score cannot detect the distortion here, localization is not completely broken until the end of the tunnel. Localization is completely broken at the exit of the tunnel. I re-initialized the localization after vehicle exit the tunnel.

From this point on, we move on to the bridge scenario. This is one of the bridges connecting the Bosphorus and was the longest bridge on our route. Here too, we thought that NDT-based localization might be disrupted. However, I did not observe any disruption.

Check warning on line 190 in docs/tutorials/components_evaluation/localization_evaluation/urban-environment-evaluation.md

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (Bosphorus)

After this part there is another tunnel(Kagithane - Bomonti) and localization behaves similar to Eurasia tunnel. However, at the exit of this tunnel, it recovers localization on its own without the need for re-initialization.

Check warning on line 192 in docs/tutorials/components_evaluation/localization_evaluation/urban-environment-evaluation.md

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (Kagithane)

Check warning on line 192 in docs/tutorials/components_evaluation/localization_evaluation/urban-environment-evaluation.md

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (Bomonti)

##### Test 1 Summary

Expand All @@ -209,7 +209,7 @@

Ground Truth : In these tests, the post-processed GNSS / INS data was used as ground truth. Since the error of this ground truth data also decreases in the tunnel environment, it is necessary to evaluate these regions by taking into account the Ground Truth error.

During these tests, I compared the NDT and EKF exposures with Ground Truth and presented the results. I am sharing the test results below as png. However, if you want to examine this data in more detail, I have created an executable file for you to visualize and take a closer look at. You can access this executable file from [here](https://drive.google.com/drive/folders/145QXl6wfV7IB9NS-PzFQtsNnxnAn6a9o?usp=sharing). Currently there is only a version that works on Ubuntu at this link, but I plan to add it for Windows as well.
During these tests, I compared the NDT and EKF exposures with Ground Truth and presented the results. I am sharing the test results below as png. However, if you want to examine this data in more detail, I have created an executable file for you to visualize and take a closer look at. You can access this executable file from [here](https://drive.google.com/drive/folders/1ges_2q8qljgLfwjZbv2Bn35Rv5awhd_U?usp=sharing). Currently there is only a version that works on Ubuntu at this link, but I plan to add it for Windows as well.
You need to follow these steps:

```bash
Expand Down
Loading