A* (A Star) Search | TurtleBot3 Robot | Motion Planning for Robots

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 27

  • @AllIsHerecom
    @AllIsHerecom 2 роки тому +2

    Bro you will have soon millions of subscribers because you have started on correct time.

  • @chiral4055
    @chiral4055 2 роки тому

    Just started learning graph algorithms and found your upload with great explanation and demo.

  • @chaosNinja790
    @chaosNinja790 2 місяці тому

    Thank you very much. You really helped me. Godsend

  • @MuhammadUsman-t4z
    @MuhammadUsman-t4z 6 місяців тому

    Absolutely Amazing

  • @abrahamyalley9973
    @abrahamyalley9973 6 місяців тому

    how do i set the astar algorithm as my global path planning algorithm

  • @tomWil245
    @tomWil245 2 роки тому

    Excellent!!! Very clear. thanks!

  • @pocopoco3468
    @pocopoco3468 10 місяців тому

    I'm trying to make a LFR(Line follower robot) till now I have made it to run on Balck and white line, all complex and simple turns, line discontinue etc.
    But I'm facing problem in loops, how to make a LFR to detect loop?

  • @MrCode12
    @MrCode12 2 роки тому +1

    Thank you very much.

  • @vikasp-j1x
    @vikasp-j1x Рік тому +1

    Brother can you suggest me any resources for doing the same , i wanna to implement my path planning in ros like you did , but i don't know how to start . I know the algorithm and implemented it in cpp without ros but i don't know to integrate like you did can you help me brother

    • @vikasp-j1x
      @vikasp-j1x Рік тому +1

      i want some resources to refer

  • @ohgeezman
    @ohgeezman 2 роки тому +1

    how to change gazebo map ? thank you for the video anyway

  • @SamarAshrafii
    @SamarAshrafii Рік тому

    thank you, This video is amazing, the only think I want to know that is it possible to change the map?

  • @SamarAshrafii
    @SamarAshrafii Рік тому

    Which plugins we need to install in order to make it work? global path planner and what else? could you plz make this part clear as well?

  • @farhanharoon6546
    @farhanharoon6546 Рік тому

    Bro one question. I have already planned a path for my environment but I dont have any idea about how to make my turtlebot3 follow that path. Please help me bro.

  • @itsme3391
    @itsme3391 Рік тому

    How can i adjust it to fit into epuck robot

  • @anubhavdogra9822
    @anubhavdogra9822 2 роки тому

    Perfect

  • @chandrasekharjinendran6844
    @chandrasekharjinendran6844 2 роки тому

    Thanks a lot !!!

  • @MrCode12
    @MrCode12 2 роки тому

    How can apply obstacle avoidance in your project?

    • @RoboticswithSakshay
      @RoboticswithSakshay  2 роки тому

      A* is a global path planning algorithm. You can use an additional local path planning algorithm to do real time obstacle avoidance. For that, one good algorithm is the DWA Planner. Link to video: ua-cam.com/video/cW_9KRL_rA0/v-deo.html

    • @MrCode12
      @MrCode12 2 роки тому

      ​@@RoboticswithSakshay I saw your video but I can't join your astar planner with DWA planner.
      Can you tell me how do that's,please?

    • @RoboticswithSakshay
      @RoboticswithSakshay  2 роки тому

      @@MrCode12 If you follow the instructions for running the AStar simulation, your work is done. This simulation already has AStar Planner as Global (as discussed in the video) and DWA as the Local.
      While running the AStar algorithm, when the robot moves after generating path. Notice a small curve in front of the Robot, that's the DWA Planner in action.

    • @MrCode12
      @MrCode12 2 роки тому

      @@RoboticswithSakshay I saw that's my friend, local planner is working thank you, but when make dynamic obstacles the robot not ovoid them and stop moving.

    • @RoboticswithSakshay
      @RoboticswithSakshay  2 роки тому +1

      @@MrCode12 The behavior of the DWA algorithm is dependent on the parameters that we provide. The parameters that the code uses are present at this link: github.com/SakshayMahna/Robotics-Playground/blob/main/turtlebot3_ws/src/global_path_planning/param/turtlebot3_ros_world/dwa_local_planner_params_burger.yaml
      Did you try placing the obstacle at various distances. For the current settings, it may be possible that the algorithm can only avoid obstacles that are further away. To account for obstacles that are closer, the settings need to be changed. More details about the parameters can be found here: wiki.ros.org/dwa_local_planner
      You can even raise an Issue on the GitHub Repository, discussing more details about the problem.