https://github.com/perinim/multi-agents-haed
https://github.com/perinim/multi-agents-haed
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/perinim/multi-agents-haed
- Owner: PeriniM
- License: mit
- Created: 2023-04-05T13:48:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-11T15:18:08.000Z (over 2 years ago)
- Last Synced: 2024-12-18T01:06:58.066Z (over 1 year ago)
- Language: Python
- Size: 5.6 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multi-Agent Hybrid Approach for Environment Discovery

## Introduction
This project focuses on simulating a multi-agent system to perform environment mapping. Agents, equipped with sensors, explore and record their surroundings, considering uncertainties in their readings.
## Installation
### Requirements
- [Python 3.8+](https://www.python.org/downloads/)
### Installation Guide
#### Ubuntu 20.04
```bash
git clone https://github.com/PeriniM/Multi-Agents-HAED.git
cd distributed-system-project
python -m venv env
source env/bin/activate
pip install -r requirements.txt
```
#### Windows
```bash
git clone https://github.com/PeriniM/Multi-Agents-HAED.git
cd distributed-system-project
python -m venv env
./env/Scripts/activate
pip install -r requirements.txt
```
## [Documentation](https://perinim.github.io/Multi-Agents-HAED/)
## Project Structure
- π[main.py](main.py)
- π[Classes](Classes)
- π[Agent.py](Classes/Agent.py)
- π[EKF.py](Classes/EKF.py)
- π[Environment.py](Classes/Environment.py)
- π[RobotAssigner.py](Classes/RobotAssigner.py)
- π[Sensors.py](Classes/Sensors.py)
- π[Shapes.py](Classes/Shapes.py)
- π[VoronoiHandler.py](Classes/VoronoiHandler.py)
## Usage
- Set the voronoi points and number of agents in the main.py file
- Run the main.py file
## Related Works
- Ahmed et al. delve deep into the intricacies of the K-Means clustering algorithm, providing a comprehensive survey and evaluation of its performance in their paper [The K-Means Algorithm](https://www.mdpi.com/2079-9292/9/8/1295).
- The challenges and solutions for the traveling salesman problem (TSP) have been extensively documented, most notably by JΓΌnger et al. in [The traveling salesman problem](https://www.sciencedirect.com/science/article/pii/S0927050705801215).
- A meticulous [comparison of various algorithms](https://www.researchgate.net/profile/Haider-Abdulkarim/publication/280597707_Comparison_of_Algorithms_for_Solving_Traveling_Salesman_Problem/links/55bcab9808ae9289a0968a31/Comparison-of-Algorithms-for-Solving-Traveling-Salesman-Problem.pdf) geared toward solving the TSP sheds light on the complexities of the problem.
- The integration of LIDAR in robot navigation is an emerging field, exemplified by research on [LIDAR-based robot navigation](https://ieeexplore.ieee.org/document/8407319).
- An all-encompassing overview of various strategies for autonomous mobile robot path planning can be found in [Autonomous Mobile Robot Path Planning Algorithms](https://ieeexplore.ieee.org/abstract/document/4339335).
## License
[MIT](https://choosealicense.com/licenses/mit/)