Bro you will have soon millions of subscribers because you have started on correct time.
@RoboticswithSakshay3 жыл бұрын
Really hope so!😄
@chiral40553 жыл бұрын
Just started learning graph algorithms and found your upload with great explanation and demo.
@pocopoco3468 Жыл бұрын
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?
@abrahamyalley99738 ай бұрын
how do i set the astar algorithm as my global path planning algorithm
@MuhammadUsman-t4z8 ай бұрын
Absolutely Amazing
@tomWil2452 жыл бұрын
Excellent!!! Very clear. thanks!
@chaosNinja7904 ай бұрын
Thank you very much. You really helped me. Godsend
@vikasp-j1x Жыл бұрын
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 Жыл бұрын
i want some resources to refer
@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?
@farhanharoon65462 жыл бұрын
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.
@ohgeezman2 жыл бұрын
how to change gazebo map ? thank you for the video anyway
@itsme3391 Жыл бұрын
How can i adjust it to fit into epuck robot
@SamarAshrafii Жыл бұрын
thank you, This video is amazing, the only think I want to know that is it possible to change the map?
@MrCode122 жыл бұрын
Thank you very much.
@RoboticswithSakshay2 жыл бұрын
Happy to know you found it useful
@MrCode122 жыл бұрын
How can apply obstacle avoidance in your project?
@RoboticswithSakshay2 жыл бұрын
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: kzbin.info/www/bejne/mYjCan6IgcSld5I
@MrCode122 жыл бұрын
@@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?
@RoboticswithSakshay2 жыл бұрын
@@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.
@MrCode122 жыл бұрын
@@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.
@RoboticswithSakshay2 жыл бұрын
@@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.