1. Homepage
  2. Programming
  3. CS 7638: AI for Robotics - Indiana Drones Project (SLAM)

CS 7638: AI for Robotics - Indiana Drones Project (SLAM)

Engage in a Conversation
GaTechCS 7638CS7638AI for RoboticsIndiana Drones ProjectSLAM

CS 7638: AI for Robotics - Indiana Drones Project (SLAM) CourseNana.COM

Fall 2023 - Deadline: Monday, Dec. 4th, Midnight AOE CourseNana.COM

Project Description CourseNana.COM

Hello Indiana Drones! We unconvered the location of an invaluable piece of ancient treasure - the likes of which we have never seen before. Unfortunately, the treasure is located in a dense and dangerous jungle - making a typical safari impossible. That’s where you come in! CourseNana.COM

As a drone navigation and extraction expert, your mission should you choose to accept it, is to : CourseNana.COM

Part A SLAM (worth 60 points) : Estimate The Locations Of Trees In The Jungle Environment And The Drone Given Pre-Scripted Movements and Measurements CourseNana.COM

Complete the SLAM class in the indiana_drones.py file. CourseNana.COM

To test your SLAM module, testing_suite_indiana_drones.py initiates a drone at (0,0) in a jungle with a lot of trees for each test case. The location, size and number of the trees are intially unknown to you. The drone moves through the jungle your process_movement function. The goal of these functions is to update your belief of the locations of the drone and trees in your environment given the measurement and movement inputs. Those estimates will be read using your get_coordinates function and compared against the ground truth. CourseNana.COM

The drone’s sensors report the distance (m), bearing (rad) and size (m) of trees (within the sensor’s horizon) relative to the drone’s location and orientation (See Figure 1 - Measurement). Note : since you only see trees within the sensor’s horizon, trees may appear and disappear in your measurements as you move through the environment and get closer/further to previously unseen/seen trees. The drone’s controller turns the drone by the pre-scripted steering angle (rad) followed by a movement in a straight line by the pre-scripted distance (m) (See Figure 1 - Movement). Both the measurement and movement have gaussian noise in their distance and bearing/steering. CourseNana.COM

In each test case, 30 points is for accurately estimating (within a 0.25 meter radius) the position of your drone and 30 points is for accurately estimating (within a 0.25 meter radius) the location of each of the trees. Points are deducted for each inaccuracy. CourseNana.COM

Figure 1: Drone Diagram CourseNana.COM

Part B Navigation (worth 40 points) : Navigate To The Treasure While Avoiding Trees In Your Path and Extract It CourseNana.COM

Complete the IndianaDronesPlanner class in the indiana_drones.py file CourseNana.COM

To test your SLAM module, the testing_suite_indiana_drones.py initiates a drone at (0,0) in a jungle with a lot of trees for each test case. The location, size and number of the trees are initially unknown to you. There is a piece of treasure in the environment whose location is known to you. The goal of your planner should be to move towards the treasure and extract it while avoiding crashes with trees on its way. CourseNana.COM

At each time step, the drone’s sensors report their measurements and this is provided as input to the next_move function along with the location of the drone. The output of the function is used to move the drone through the jungle environment and distance you prescribe. Your drone has a maximum turning angle [in radians] and a maximum distance [in meters] that it can move each timestep [both passed using a parameter]. Movement commands that exceed these values will be ignored and cause the drone to not move. The extract action extracts the treasure at your location. The treasure will only be extracted if it is within the defined radius CourseNana.COM

(0.25 meters). If not there will be a time penalty for extracting dirt. CourseNana.COM

You should specify the movement as follows: move 1 1.57. [command distance steering] which means the drone will turn counterclock-wise 90 degrees [1.57 radians] first and then move a distance of 1 meter. When you issue your extract action you of the drone as follows: extract * 1.5 -2.1 [command treasure_type x y]. CourseNana.COM

Whenever the drone enters within a particular radius of a tree’s center (i.e. the canopy of a tree), it is deemed to have crashed. In this project we assume the drone is a point (even though in the visualization it occupies some area). Note :  the tree, which would result in a penalty. The line_circle_intersect function in testing_suite_indiana_drones.py may be helpful. CourseNana.COM

40 points is for extracting the treasure within the time limit, of which 10 points is deducted for each tree crash (upto a maximum of 20 points). For example, if the drone extracted the treasure within the time limit but crashed into one tree and one tree only, you will receive 30 points. CourseNana.COM

Submitting your Assignment CourseNana.COM

We are using the Gradescope autograder system which allows you to upload and grade your assignment with a remote / online autograder. You must submit your indiana_drones.py file (only) to Gradescope to receive credit. Do not archive (zip,tar,etc) it. Your code must be valid python code, and you may use external modules such as numpy, scipy, etc. CourseNana.COM

We encourage you to keep any testing code in a separate file that you do not submit. Your code should also NOT display a GUI or Visualization when we import or call your function under test. CourseNana.COM

Testing Your Code CourseNana.COM

We have provided a testing suite and test cases similar to the one we’ll be using for grading the project, which you can use to help ensure your code is working correctly. These testing suites are NOT complete, and you will need to develop other, more complicated, test cases to fully validate your code. We also recommend making your own simple/trivial test cases to unit test your algorithm as you code it. We encourage you to share your test cases (only) with other students on Ed Discussions. CourseNana.COM

The testing_suite_indiana_drones.py will run all cases from both part A and part B 10 times, remove the lowest score for each and average the rest to calculate your score. It will do this automatically (i.e. you do not need to loop your code). Since the score is stochastic and may have small variations, feel free to run your code on Gradescope multiple times. CourseNana.COM

Ensure that your code consistently succeeds on each of the given test cases as well as on a wide range of other test cases of your own design. For each test case, your code must complete execution within the prescribed CourseNana.COM

time limit (10 seconds) or it will receive no credit. Note that the grading machine is relatively low powered, so you may want to set your local time limit to 5 seconds to ensure that you don’t go past the CPU limit. Note that if VERBOSE is on in the testing_suite_indiana_drones.py file, printing will take a lot of time and slow down your execution. So please feel free to increase the time limit while debugging with the VERBOSE on, but when you submit your code, it should run within the 10 second time limit on Gradescope. CourseNana.COM

Usage: python testing_suite_indiana_drones.py Visualization and Debugging CourseNana.COM

A visualization file has been provided to aid in debugging. The visualization will plot 6 pieces of data: the real location of drone, the estimated location of drone, the real location of trees, the estimated location of trees, the types of the trees (‘A’, ‘B’, . . . etc The real location of trees will be represented by circles of varying radii. The trees that are visible to the drone’s sensors are green in color and the trees that are too far away for the sensor to detect are in gray. The estimated location of a tree will be a small black dot. The type of tree/treasure will be next to the real location. The treasure is represented by a red triangle. CourseNana.COM

The estimated points to plot need to be returned from next_move as a 2nd (optional) value in the form of a dictionary. This is needed to show your SLAM system’s estimates of drone and landmark location in the visualization. The keys should be the landmark id and the values should be its x,y coordinates. The key representing the drone’s estimated location will be ‘self’. {'self': (.2, 1.5), landmark id 1: (.4,1.9)} CourseNana.COM

Usage: python visualize.py [-h] [--part {A,B}] [--case {1,2,3,4,5}] CourseNana.COM

Example to run the visualization: python visualize.py --part B --case 3 CourseNana.COM

The visualize.py and testing_suite_indiana_drones.py have a VERBOSE FLAG. If the FLAG is True, it will print helpful outputs in the terminal for debugging. In addition, there is a NOISE_FLAG in the testing_suite_indiana_drones.py. Ensure that your code works with no noise first before you test against a noisy environment. CourseNana.COM

Academic Integrity CourseNana.COM

You must write the code for this project alone. While you may make limited usage of outside resources, keep in mind that you must cite any such resources you use in your work (for example, you should use comments to denote a snippet of code obtained from StackOverflow, lecture videos, etc). CourseNana.COM

You must not use anybody else’s code for this project in your work. We will use code-similarity detection software to identify suspicious code, and we will refer any potential incidents to the Office of Student Integrity for investigation. Moreover, you must not post your work on a publicly accessible repository; this could also result in an Honor Code violation [if another student turns in your code]. (Consider using the GT provided Github repository or a repo such as Bitbucket that doesn’t default to public sharing.) CourseNana.COM

Frequently Asked Questions (F.A.Q.) CourseNana.COM

Q: I’m confused. We are given so many files. What exactly should we do again and in which file? A: The main file you are concerned with is indiana_drones.py. This is what you fill and submit to gradescope. It contains two classes (SLAM and IndianaDronesPlanner) whose methods are used by the testing_suite_indiana_drone.py to run SLAM and Navigation respectively in various test cases to generate your score. drone.py and matrix.py contain helper classes and methods that you are free to use in your implementation. visualize.py is provided to help you debug your code with a visualization. CourseNana.COM

Q: Where does the drone start? Which way is it facing? A: Although the drone starts in different places in different test cases, you can assume that it starts at (0,0) for each test case and report your outputs accordinly. Your drone will always have a bearing of zero degrees when it starts (i.e. facing east). CourseNana.COM

CourseNana.COM

Q: What are the (x,y) return values from get_coordinates function relative to? A: They should return your best guess for the position of the drone and trees relative to the drone’s starting location (0,0). CourseNana.COM

Q: How can I uniquely identify trees in the environment? A: Each tree will have a unique landmark id. Although there may be more than one of the same type of tree in the area, each will have a unique id. CourseNana.COM

Things To Think About CourseNana.COM

1. GraphSLAM estimates the X and Y locations of the drone, but the orientation accumulates noise too. Do you need to handle that? If you do, think about how you would do so. CourseNana.COM

2. GraphSLAM assumes that distance and bearing/steering angle. Does this cause an issue? If so, how would you handle that? Are simple heuristics enough or do you need a detailed model? CourseNana.COM

3. How can the drone detect a potential crash of its path with a tree? And when it detects a potential crash with a tree, how can the drone avoid the crash? Could it figure out what options it has and choose one way it could go? Or does it need to find an exact path to avoid the crash? CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
GaTech代写,CS 7638代写,CS7638代写,AI for Robotics代写,Indiana Drones Project代写,SLAM代写,GaTech代编,CS 7638代编,CS7638代编,AI for Robotics代编,Indiana Drones Project代编,SLAM代编,GaTech代考,CS 7638代考,CS7638代考,AI for Robotics代考,Indiana Drones Project代考,SLAM代考,GaTechhelp,CS 7638help,CS7638help,AI for Roboticshelp,Indiana Drones Projecthelp,SLAMhelp,GaTech作业代写,CS 7638作业代写,CS7638作业代写,AI for Robotics作业代写,Indiana Drones Project作业代写,SLAM作业代写,GaTech编程代写,CS 7638编程代写,CS7638编程代写,AI for Robotics编程代写,Indiana Drones Project编程代写,SLAM编程代写,GaTechprogramming help,CS 7638programming help,CS7638programming help,AI for Roboticsprogramming help,Indiana Drones Projectprogramming help,SLAMprogramming help,GaTechassignment help,CS 7638assignment help,CS7638assignment help,AI for Roboticsassignment help,Indiana Drones Projectassignment help,SLAMassignment help,GaTechsolution,CS 7638solution,CS7638solution,AI for Roboticssolution,Indiana Drones Projectsolution,SLAMsolution,