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

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ก.ย. 2024

ความคิดเห็น • 27

  • @chaosNinja790
    @chaosNinja790 ชั่วโมงที่ผ่านมา

    Thank you very much. You really helped me. Godsend

  • @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.

  • @user-ft5qq3mq5g
    @user-ft5qq3mq5g 4 หลายเดือนก่อน

    Absolutely Amazing

  • @MrCode12
    @MrCode12 2 ปีที่แล้ว +1

    Thank you very much.

  • @tomWil245
    @tomWil245 2 ปีที่แล้ว

    Excellent!!! Very clear. thanks!

  • @user-ty8ve8ni5d
    @user-ty8ve8ni5d 9 หลายเดือนก่อน +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

    • @user-ty8ve8ni5d
      @user-ty8ve8ni5d 9 หลายเดือนก่อน +1

      i want some resources to refer

  • @abrahamyalley9973
    @abrahamyalley9973 4 หลายเดือนก่อน

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

  • @ohgeezman
    @ohgeezman 2 ปีที่แล้ว +1

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

  • @pocopoco3468
    @pocopoco3468 8 หลายเดือนก่อน

    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?

  • @anubhavdogra9822
    @anubhavdogra9822 2 ปีที่แล้ว

    Perfect

  • @SamarAshrafii
    @SamarAshrafii ปีที่แล้ว

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

  • @chandrasekharjinendran6844
    @chandrasekharjinendran6844 2 ปีที่แล้ว

    Thanks a lot !!!

  • @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

  • @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: th-cam.com/video/cW_9KRL_rA0/w-d-xo.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.