Difference between revisions of "2020FallTeam3"

From MAE/ECE 148 - Introduction to Autonomous Vehicles
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 20: Line 20:


[[File:Tokyo-drift.jpeg]]
[[File:Tokyo-drift.jpeg]]
'''Making School News!'''


[[File:team3_dom_ins.jpeg]]
[[File:team3_dom_ins.jpeg]]
Line 34: Line 36:
-modular plate to make the assembly process more flexible as well as to be able to mount new hardware for future projects
-modular plate to make the assembly process more flexible as well as to be able to mount new hardware for future projects


-full enclosure design, meaning all electronics (besides camera) were inside our enclosure. The Jetson was mounted to custom plate and the rest of the components were velcroed to the ceiling of enclosure
-full enclosure design (meaning all electronics besides camera were inside our enclosure) with ventilation openings to increase cooling
 
-Jetson was mounted to custom plate and the rest of the components were velcroed to the ceiling of enclosure


-sliding access panel to electronics inside enclosure
-sliding access panel to electronics inside enclosure
Line 43: Line 47:


-custom license plate and decals (including our signatures on the baseplate!)
-custom license plate and decals (including our signatures on the baseplate!)
'''Base plate'''
[[File:Plate_team3_fall_2020.PNG]]
'''Custom Jetson plate'''
[[File:Jetson_mount_team3_fall_2020.PNG]]
'''Hinges'''
[[File:Hinges_team3_fall_2020.PNG]]
'''Enclosure (cooling) '''
[[File:Enclosure_front_team3_fall_2020.PNG]]
'''Enclosure (access panel) '''
[[File:Enclosure_rear_team3_fall_2020.PNG]]
'''Animations demonstrating design intentions'''


[[File:Sliding_door.mp4]]
[[File:Sliding_door.mp4]]
Line 212: Line 238:


== Media ==
== Media ==
[[File:Side_team3_fall_2020.jpg]]
[[File:Rear_team3_fall_2020.png]]
[[File:Is_That_VTEC.jpeg]]
[[File:Is_That_VTEC.jpeg]]
[[File:Hinges_test.mp4]]
[[File:Final_team3_fall_2020.jpg]]
[[File:Team3_fall_2020.jpeg]]
[[File:Team3_fall_2020.jpeg]]

Latest revision as of 06:32, 7 January 2021

Team Members

  • Dominic Nightingale – MAE Senior
  • Parker Goddard – MAE Senior
  • Boyuan Fang – CSE Senior
  • Hao Le – ECE Junior

Overview

Hardware

ROS Package: potatoInside

Gitlab repository: https://gitlab.com/djnighti/potatoinside/-/tree/master

This is a migration of the gitlab readme, the original readme is here

Description

A ROS package using OpenCV on an RC car to do autonomous laps around a track using line following algorithms.


Tokyo-drift.jpeg

Making School News!

Team3 dom ins.jpeg


Wiring Schematic

Schematic team3 Fall2020.png

CAD

Our design features the following:

-modular plate to make the assembly process more flexible as well as to be able to mount new hardware for future projects

-full enclosure design (meaning all electronics besides camera were inside our enclosure) with ventilation openings to increase cooling

-Jetson was mounted to custom plate and the rest of the components were velcroed to the ceiling of enclosure

-sliding access panel to electronics inside enclosure

-3D printed hinges to allow extremely easy access to the battery below the modular plate

-tilt adjustable (fixed height) camera mount

-custom license plate and decals (including our signatures on the baseplate!)

Base plate

Plate team3 fall 2020.PNG

Custom Jetson plate

Jetson mount team3 fall 2020.PNG

Hinges

Hinges team3 fall 2020.PNG

Enclosure (cooling)

Enclosure front team3 fall 2020.PNG

Enclosure (access panel)

Enclosure rear team3 fall 2020.PNG

Animations demonstrating design intentions

File:Sliding door.mp4 File:Hinges.mp4

Dependencies

cv2

OpenCV is a library, in our case for Python, that provides high-level functions for computer vision and image processing.

adafruit_servokit

Adafruit Servokit is a Python library that provides a high-level interface with low-level PWM controls. In our case, we are using the library to control PWM servos connected to channels of the PCA9685 I2C breakout board.

cv_bridge

CV Bridge provides functions to easily convert (encode/decode) in between ROS image message types to OpenCV-workable Numpy arrays.

simple-pid

Simple PID is a Python library that provides a way to turn a PID controller into a simplified Python object.

Environment Configuration

If you are running a ROS version that defaults to Python3, you can install the dependencies to the host Python3 or some virtual environment such as Conda. However, ROS versions that default to Python2 will require a virtual environment that has Python3 as the Python PATH i.e. if you type "python" into the terminal Python3 should begin.

Clone this repo to the src of your Catkin workspace. Then, go to the workspace directory and do catkin_make. This should register the package as part of your ROS environment. You can check by looking for the package name with **rospack**.

Package Map

Ros overview team3 fall 2020.png

Structure

Nodes

throttle_client

Associated file: throttle_client.py

This node subscribes to the throttle topic. We use subscriber callback function to validate and normalize throttle value, and then use the adafruit_servokit module on channel 0 for sending signals to the hardware.

This node is also responsible for reading and setting the throttle calibration values.

steering_client

Associated file: steering_client.py

Similar to throttle_client, this node subscribes to the steering topic and passes the signals to the hardware. The steering servo is on channel 1.

The ServoKit class from the adafruit_servokit library proved to be a simple way to control both our steering servo and drive motor, acting as the interface between user specified steering angles and throttle values and the PWM (Pulse Width Modulation) signal required by the steering servo and drive motor ESC. Our team utilized both the servo and continuous_servo methods of the ServoKit class. The implementation of these can be found in the throttle_client.py and steering_client.py scripts, as well as in potato_calibration.py.

The servo method (without any modifications from stock) accepts user inputs in range [0:180] degrees. Zero corresponds to full left and 180 corresponds to full right steering. Within the ServoKit class 0 and 180 correspond to the minimum and maximum pulse widths sent by the PWM board to the servo motor corresponding to a 1ms to 2ms PWM pulse width range, respectively. Servos standardly are at 0 degrees with a 1ms pulse width and 180 degrees with a 2ms pulse width, with the pulses occuring at a frequency of 50Hz. If for some reason the max steering angle is not achieved when one feeds the ServoKit class a value of 180, the maximum pulse with can be increased beyone the stock value given to the class (standard range is 1000 micro-seconds to 2000 micro-seconds). In the documentation there is also a function to edit the max actuation range, allowing the user to change the max steering value from the stock 180 degrees to a different value.

The continuous_servo method allows for control of an ESC driven DC motor, designed for continuous rotation (compare to a standard servo motor which has a finite range of motion). The input range for this method is [-1:1], with -1 corresponding to the maximum reverse PWM output and 1 corresponding to the maximum forward throttle value. The throttle range for our car was very small before making any changes to the PWM pulse widths. Outputs ranging from no throttle to what appeared to be close to 100% throttle were contained in the range [.28:.3].


camera_server

Associated file: camera_server.py

This node simply reads from the camera with cv2's interface and publishes the image to the camera_rgb topic. Before publishing, the image is reformatted from the cv image format so it can be passed through the ROS topic message structure.

lane_detection_node

Associated file: lane_detection.py

In this node, we read from camera_rgb topic and use opencv to identify line information from the image, and publish the information of the middle point between all identified lines to the centroid topic.


Filtering process team3 fall 2020.png

Applying methods team3 fall 2020.png

Applying logic team3 fall 2020.png

NOTE: The colors used in the last two boxes are intentional and demonstrate the decision making process that the robot is making real time which is demonstrated in the video below.

File:Contours new colors Trim.mp4

lane_guidance_node

Associated file: lane_guidance.py

This node subscribes to the centroid topic, calculates the throttle and steering based on the centroid value, and then publish them to their corresponding topics.

Throttle is based on whether or not a centroid exists - car goes faster when centroid is present and slows down when there is none.

Steering is based on a PID controller implemented by the simple-pid module. Gains can be tweaked in the lane_guidance.py script.

Calibration

Associated file: potato_calibration.py

A calibration script was created to allow the driver to ensure that the software commands that are sent to the hardware are both within the hardware limitations, as well as accurately mapped to hardware actuation.

This script utilizes the servokit class from the adafruit_servokit library to send steering and throttle commands to the car to be observed by the user. The script contains of a sequence of prompts, asking the user to input steering and throttle values that correspond to maximums, minimums and straight/neutral values. At the end of the script the user can choose to save these values to a configuration file that will be read when the steering and throttle nodes are launched.

  • Dicsuss the beginning of the script where the user can decide PWM values for the max and min servo actuation. Also need to test to see if this works with the continuous_servo class.


Topics

Name MsgType Info
throttle std_msgs.msg.Float32 Float value from -1 to 1 for controlling throttle
steering std_msgs.msg.Float32 Float value from -1 to 1 for controlling steering
camera_rgb sensor_msgs.msg.Image Image last read from USB camera image
centroid std_msgs.msg.Int32 Integer for x coordinate of centroid in camera image space

Launch

Launching the package is as simple as roslaunch potatoinside potato.launch This should begin all the necessary nodes and get the car moving.


Issues and Fixes

Error with CV_Bridge conversion from Image message to OpenCV image

Using bridge_object.imgmsg_to_cv2() threw errors on our Jetson Nano environment, so we had to resort to our own image decoder function. Function decodeImage() can be imported from decoder.py. If you don't want to use our function, the problem can be avoided by properly building CV_Bridge with Python3 in the ROS package.

Throttle not working

This issue can vary between cars, but generally the problem lies in the PWM range that is mapped by the Adafruit library. If the "start" PWM is too low, then even a maxed out "1" might not map to the PWM value that will trigger the ESC. First make sure the -1 to 1 range is properly calibrated. During runtime, the scale constant found in throttle_client.py can also be tweaked.

cv2 thesholding not picking up road lines

This issue stems from two sources that are not mutually exclusive:

It can be that the lower and upper HSV ranges configured in lane_detection.py are not properly recognizing the color of whatever marks you are trying to parse on your road environment. This can be done through trial and error or by using online color pickers.

Most USB cameras have minds of their own. Essentially, it can do its own processing independent from cv2 like constrast, saturation, and more importantly auto exposure. Adapting to the ambient light means certain HSV ranges may not apply when lighting changes, messing up algorithms. To combat this, you would need to configure your USB camera to manual exposure, ensuring that your HSV range is consistent everywhere. To do this, follow this page for more information on how to access camera variables via Linux terminal.


Steering/throttle is too hard or too soft

You would need to tune the PID control gains of both steering and throttle via lane_guidance.py. This can be done by simply playing around with the constants. Caution is needed when altering the throttle values since too high of throttle draw too much current, shutting down all other electronics on the car including the Jetson. To avoid this, do rostopic pub throttle and publish incremental values starting from 0 to the throttle topic to guage the "right" range.

ROS version is not compatible with Python3

This can be solved with virtual environments such as Conda. Simply make sure all terminals opened are sourced to that environment. This can be automated by editing bashrc. To check, type in python in the terminal; some terminal version of Python3 should begin.


Media

Side team3 fall 2020.jpg Rear team3 fall 2020.png Is That VTEC.jpeg

File:Hinges test.mp4

Final team3 fall 2020.jpg

Team3 fall 2020.jpeg