ece4580:module_autonav
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ece4580:module_autonav [2017/01/29 16:09] – pvela | ece4580:module_autonav [2024/08/20 21:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ~~NOTOC~~ | ||
====== Vision-Based Autonomous Navigation of a Mobile Robot ====== | ====== Vision-Based Autonomous Navigation of a Mobile Robot ====== | ||
Line 4: | Line 5: | ||
===== Module #1: Wandering ===== | ===== Module #1: Wandering ===== | ||
+ | -------------------------------- | ||
This module pretty much follows the standard pipeline from the Turtlebot Adventures. | This module pretty much follows the standard pipeline from the Turtlebot Adventures. | ||
- | __**Week #1: Basic Operation**__\\ | + | ====Week #1: Basic Operation==== |
- | This module assumes no prior experience, so the first week is about getting the basic covered in terms of simply running the Turtlebot mobile robot. | + | This module assumes no prior experience, so the first week is about getting the basic covered in terms of simply running the Turtlebot mobile robot. |
- Demonstrate that you can connnect to the Turtlebot, launch the core services, and tele-operate it. | - Demonstrate that you can connnect to the Turtlebot, launch the core services, and tele-operate it. | ||
- Answer the questions in the [[Turtlebot:: | - Answer the questions in the [[Turtlebot:: | ||
- | __** Week #2: Drive Commands and Visual Sensing**__\\ | + | ====Week #2: Drive Commands and Visual Sensing==== |
Now that we have some grasp on the basics of the Turtlebot, we want to understand how to both actuate and to sense, the latter because that's the purpose of the class, and the former because this module is about deciding how to actuate based on the sensed information. | Now that we have some grasp on the basics of the Turtlebot, we want to understand how to both actuate and to sense, the latter because that's the purpose of the class, and the former because this module is about deciding how to actuate based on the sensed information. | ||
- Complete the [[Turtlebot: | - Complete the [[Turtlebot: | ||
- Complete the first two bullets of the [[Turtlebot: | - Complete the first two bullets of the [[Turtlebot: | ||
- | __** Week #3: A Safety Finite State Machine | + | ====Week #3: A Safety Finite State Machine==== |
Here, we will explore how to implement some safety checks in the robot en route to creating visual navigation algorithms for the Turtlebot. Importantly, | Here, we will explore how to implement some safety checks in the robot en route to creating visual navigation algorithms for the Turtlebot. Importantly, | ||
- Complete the first two bullets of the [[Turtlebot: | - Complete the first two bullets of the [[Turtlebot: | ||
- Demo the robot blindly navigating around based on its bump sensors. | - Demo the robot blindly navigating around based on its bump sensors. | ||
- | __** Week #4: Vision-Based Wandering | + | ====Week #4: Vision-Based Wandering==== |
Here, we will explore the most basic form of navigation, wandering around aimlessly without hitting things (hopefully). | Here, we will explore the most basic form of navigation, wandering around aimlessly without hitting things (hopefully). | ||
- Complete the [[Turtlebot: | - Complete the [[Turtlebot: | ||
+ | |||
+ | |||
+ | ===== Module #2: Follow the Gap ===== | ||
+ | -------------------------------- | ||
+ | |||
+ | This module will explore an early sensor-based navigation method, known as [[https:// | ||
+ | |||
+ | ==== Week #1: Gap Analysis ===== | ||
+ | |||
+ | Read the paper to get a sense for what is involved in calculating the gap array and finding the maximum gap. Implement the procedure for doing so, and using select depth images from obstacle avoiding scenarios, turn in the gap array and maximum gap outputs. As demonstration, | ||
+ | |||
+ | // | ||
+ | |||
+ | //Not a Numbers.// There will be some issues with noise. | ||
+ | |||
+ | A sample output is the following: | ||
+ | |||
+ | {{ ece4580: | ||
+ | |||
+ | Note that for this activity, you are being asked to return both far and near values for the gap scan, while this image only has the far values and uses NaNs for the near values (that indicate collision). | ||
+ | |||
+ | //Hints:// I don't advocate looking at this first, but [[http:// | ||
+ | |||
+ | ==== Week #2: Gap Selection and Control ===== | ||
+ | |||
+ | Given that the gap array and maximum gap has been computed, finish things off with the gap center angle computation, | ||
+ | |||
+ | ==== Week #3: Hallway Navigation ===== | ||
+ | |||
+ | Up to now, you have not really been contemplating some end-goal or objective for travelling. | ||
+ | |||
+ | // | ||
+ | |||
+ | ==== Week #4: Consistent Operation ===== | ||
+ | |||
+ | You may have found the gap method to sometimes jitter, sometimes crash, sometimes just do slightly the wrong thing. One reason was using too small of a threshold for the distance so that the robot would react to late, while at the same time having a miserable view-able area for maneuvering. Making the gap threshold distance larger helps with that, but still may exhibit some of the behavior above (just less frequent or less drastic). The persistence of those behaviors is a function of the noise in the sensor, the small field of view of the camera, and the lack of memory regarding parts of the world that leave the field of view. Here, we want to incorporate some kind of memory into the algorithm for smoother behavior, and better operation when navigating through a gap. | ||
+ | |||
+ | Create a state machine for the system as it navigates the gaps. There will be a gap scan and go to goal behavior, a go through gap behavior. They may map to more than 2 states. Roughly, we have the following: | ||
+ | - While not gap is perceived, go to the goal $p_{goal}$ while continually evaluating for a gap. | ||
+ | - When a gap is perceived, instantiate a new goal state being the gap center location, $p_{gap}$, then drive to that goal state. | ||
+ | - The gap line creates a partition of the world into two halves, in front of the line and behind the line. Your robot should be in front of the line, and as it passes through the gap transitions to being behind the line. That line can be written as an equation of the form $n_1 x + n_2 y = 0$, where being in front of the line means that the line equation is negative instead of zero, and being behind the line has it being positive instead of zero. Though the goal is the gap, the objective should be to drive past the gap by some distance threshold, so that $n_1 x + n_2 y > d_\tau$. Then it should start to drive towards the real goal again. | ||
+ | - One way to drive through the gap is to set up a secondary goal position that is beyond the goal along the normal $\vec n = (n_1, n_2)$ to the line by a distance $2 d_\tau$, as in $p_{past} = p_{gap} + 2 d_\tau \vec n$. When you get to the transition line (from negative to positive), then switch to this new goal and drive towards it until going a distance of $d_\tau$ past the transition line. Switch back to the go to goal state. | ||
+ | |||
+ | Hopefully that makes sense. | ||
+ | |||
+ | You will have to implement a closed loop control scheme, like discussed in the [[Turtlebot: | ||
+ | |||
+ | Use your odometry to estimate where you are and where the intermediate goal positions are. Some of the above may need to be properly integrated with the " | ||
+ | ===== Module #3: Dynamic Window Approach ===== | ||
+ | -------------------------------- | ||
+ | |||
+ | This module explores the [[http:// | ||
+ | |||
+ | ==== Week #1: Externally Derived Objective Functions ==== | ||
+ | |||
+ | ==== Week #2: Velocity Derived Objective Function ==== | ||
+ | |||
+ | ==== Week #3: Integration and Selection ===== | ||
+ | |||
+ | ==== Week #4: Execution ===== | ||
+ | |||
+ | |||
+ | ===== Module #4: Vector Polar Histogram ===== | ||
+ | ---------------------- | ||
+ | |||
+ | Another recent addition to the solution landscape is the [[http:// | ||
+ | |||
+ | ==== Week #1: TBD ==== | ||
+ | |||
+ | ==== Week #2: TBD ==== | ||
+ | |||
+ | ==== Week #3: TBD If At All ==== | ||
+ | |||
-------- | -------- | ||
;#; | ;#; |
ece4580/module_autonav.1485724189.txt.gz · Last modified: 2024/08/20 21:38 (external edit)