-
Notifications
You must be signed in to change notification settings - Fork 132
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
Implement Shared Knowledge Between Vehicles #349
Comments
Hi @Rom-1T, I think the If you don't need the ground truth at runtime, you can also do the analysis afterwards. For example, each vehicle may contribute its "real" positions over time to an OMNeT++ result vector. If you also log the "assumed" positions derived by others, you can calculate the error margin in a post-processing step. |
Hello, After running some simulations, I understand that vehicle modules are appended to the network, which can make it difficult to collect data. I considered using the On the other hand, I thought of relying on a module inside each vehicle to update the "shared knowledge" based on their I'll continue searching for a proper solution. Thank you for your response. |
If the tracked |
Hello,
For my research, I want to implement a form of "shared knowledge" between vehicles. As a first step, I aim to create shared knowledge that represents ground truth information, including position, speed, detected objects, etc., for each vehicle.
After reviewing the code, I thought that using the GlobalEnvironmentModel might be a potential solution. However, I'm having trouble determining the best approach. My questions are:
What is the easiest way to retrieve information from all vehicles?
Is using the GlobalEnvironmentModel a good approach for this purpose?
Thank you!
The text was updated successfully, but these errors were encountered: