├── .gitignore ├── ENGR_635_Final_Report_Azmyin.pdf ├── GA_V3.0_robot_map1 ├── GA_robot_path_planning.mlx ├── create_new_gen.m ├── labelpoints.m ├── load_dat.m ├── output.mp4 ├── print_best_path.m ├── random_g1.asv ├── random_g1.m ├── random_generator.m └── run_genetic_algo.m ├── GA_V3.0_robot_map2 ├── GA_robot_path_planning.mlx ├── create_new_gen.m ├── labelpoints.m ├── license.txt ├── load_dat.m ├── print_best_path.m ├── random_g1.m ├── random_generator.m └── run_genetic_algo.m ├── LICENSE ├── README.md └── image ├── map1.png ├── map2.PNG └── result_map_2.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.mp4 -------------------------------------------------------------------------------- /ENGR_635_Final_Report_Azmyin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/ENGR_635_Final_Report_Azmyin.pdf -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/GA_robot_path_planning.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/GA_robot_path_planning.mlx -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/create_new_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/create_new_gen.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/labelpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/labelpoints.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/load_dat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/load_dat.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/output.mp4 -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/print_best_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/print_best_path.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/random_g1.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/random_g1.asv -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/random_g1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/random_g1.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/random_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/random_generator.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map1/run_genetic_algo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map1/run_genetic_algo.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/GA_robot_path_planning.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/GA_robot_path_planning.mlx -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/create_new_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/create_new_gen.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/labelpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/labelpoints.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/license.txt -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/load_dat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/load_dat.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/print_best_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/print_best_path.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/random_g1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/random_g1.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/random_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/random_generator.m -------------------------------------------------------------------------------- /GA_V3.0_robot_map2/run_genetic_algo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/GA_V3.0_robot_map2/run_genetic_algo.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/README.md -------------------------------------------------------------------------------- /image/map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/image/map1.png -------------------------------------------------------------------------------- /image/map2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/image/map2.PNG -------------------------------------------------------------------------------- /image/result_map_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mechazo11/Mobile_Robot_Path_Planning_Genetic_Algorithm/HEAD/image/result_map_2.png --------------------------------------------------------------------------------