where to code after the Hello Drone running, for RL implementation and Object Detection #3609
-
Questionwhere to code after the Hello Drone running, for RL implementation and Object DetectionWhich files to implement codes for object detection and automatic drone pathing. Include context on what you are trying to achieveI have completed until the Hello Drone which runs on with the manual Control(external controller) and How i can make the drone movements autonomous and in which file do i need to code for the object detection Algorithm . |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Similar to #3550, If you're planning on using the python APIs, all you would need to do is make sure the airsim package is installed through pip and you can start using the APIs similar to the demo python scripts.
you can use the moveToPositionAsync, the moveByVelocityAsync or any of the other movement API calls. For examples on how to use these, check the demo files
You can create your own python script as long as you |
Beta Was this translation helpful? Give feedback.
-
Thank You very Much, really Helpful ! |
Beta Was this translation helpful? Give feedback.
Similar to #3550, If you're planning on using the python APIs, all you would need to do is make sure the airsim package is installed through pip and you can start using the APIs similar to the demo python scripts.
you can use the moveToPositionAsync, the moveByVelocityAsync or any of the other movement API calls. For examples on how to use these, check the demo files
You can create your own python script as long as you
import airsim
. Or you can modify any of the demo python scripts