Difference between revisions of "2021SpringTeam4"

From MAE/ECE 148 - Introduction to Autonomous Vehicles
Jump to navigation Jump to search
Line 139: Line 139:
  '''HELP '''
  '''HELP '''


=== Testing of our car-follower ==
=== Testing of our car-follower ===
Observe our car detecting the april tag on the leading car, then adjusting the throttle and steering angle in order to minimize the distance and alignment offset between the cars.
Observe our car detecting the april tag on the leading car, then adjusting the throttle and steering angle in order to minimize the distance and alignment offset between the cars.



Revision as of 02:20, 12 June 2021

Spring 2021 Team 4

Team 4 achieved driving multiple laps on autonomous outdoor track using both Donkey Car and ROS.

For the final project we developed a car-following system.

Team's 4 car

Library car.jpg

Team Members

  • Karen Hernandez - Electrical Engineering
  • Jan Schüürmann - Aerospace Engineering
  • Bryant Liu - Computer Engineering
  • Joe Wayne - Mechanical Engineering

The members in the picture are standing in the order mentioned above (from left to right on the image)

Team4 members spring2021.jpg

Instructors

  • Mauricio de Oliveira
  • Jack Silberman

Teacher's Assistants

  • Dominic Nightingale - Mechanical Engineering
  • Haoru Xue - Electrical Engineering

Objective

Develop a tracking system for our car to follow a targeted moving car. An April Tag is placed behind the leading car for detection purposes, which will serve as a reference point for the distance and position of the leading car with respect to our car. With the measurements obtained from the April tag and by implementing ROS, we can control the throttle and steering of our car to follow the identified car.

Note: The tag size could be smaller, but given the quality of the camera we use a larger tag.

Team4s21 aprilTag setup car.jpg

Hardware

Chassis

The chassis given by the instructor at the beginning of the quarter is the following:

Team4s1 empty chasis.jpg

Wiring Schematic

In order to make the components work as desired, we connected them according to the wire schematic shown below. This includes all the hardware required:

Wire schematic HernandezKaren.JPG

Base Plate

For us to have flexibility when it comes to mounting hardware onto the base plate, we decided to design a plate that had mounting holes all throughout. This plate is mounted on four 2-inch stand-offs from the bottom of the chassis, such that the battery, speed controller and steering servo motor are located underneath the base plate. All other components are located on the top part of the base plate.

CAD of the base plate design

Team4s21 plate cad.png

Final product of the base plate

We used a Lasercamm for cutting a 1/4" acryllic

Note: This also shows the Jetson Nano bottom part of the 3D printed shell mounted onto the base plate. The design for the Jetson Nano shell was not design by the team, link to online free CAD is [[1]] . The only change was that we added the side mounts.

Team4s21 plate finished.jpg

Camera

The camera shell for the camera was designed so that it would protect the camera, with extended covering from the top part so that the lighting would not affect the image. The camera shell is connected by velcro to an elevated plate that is connected to the base plate by stand-offs. Four screw holes are added to provide the possibility of a stiffer connection if necessary. It is important to mention that the angle used for the camera shell design was different for each project of the class. The images below are for the camera mount and shell used on the final project.

Camera mount CAD

Camera mount

Used a MakerBot Method for PLA printing & rapid prototyping

Camera stand CAD

The ideal position of the camera mount changed depending on the task we were working on. Thus, we designed a stand with adjustable height where the camera mount was attached to. The elongated holes are for the optional screw conncetion of the camera casing and helps with centering the mount.

Team4s21 stand camera mount.png

Camera stand

Software

AprilTags

apriltag provide means of identification and 3D positioning, these are similar to QR codes but April Tags are designed to encode a significantly smaller amount of data.

ROS Wrapper

The apiltag_ros package provides access to the AprilTag core and makes the information of detected images and tag poses available over ROS topics.

apriltag_ros

Team4s21 april tag diagram.png

ROS Package

Robot Operating system (ROS) is a collection of software frameworks which facilitate robot software development. For our final project we created a simple ROS package using OpenCV and April Tags in order to de able to detect a specified tag on another 1/10 RC car and control the throttle and steering such that our car can follow the other car based off the april tag position and distance. We will be using the Noetic distribution.

Dependencies

cv2

OpenCV is library that provides real-time optimized computer vision and image processing tools. It was created such that most of its functions integrate well with other libraries, such as Matplotlib, Numpy and Scipy, with the purpose of visualizing and processing data. We will be using the cv2 Python interface. OpenCV will be used to detect the April Tags.

adafruit_servokit

Adafruit is a library that facilitates the implementation of python code to control servos with the Adafruit 16-channel servo driver. This library provides a high-level interface with low-level PWM controls. For this project, the library is used to control the PWD which manages the steering servo and the electronic speed controller (ESC).

cv_bridge

In order to be able to transfer data between ROS and OpenCV, we will use the cv_bridge which converts data such that is workable between ROS Image messages and OpenCV images.

Structure

HELP 

Nodes

Topics

Launch

Calibration

Results

HELP 

Testing of our car-follower

Observe our car detecting the april tag on the leading car, then adjusting the throttle and steering angle in order to minimize the distance and alignment offset between the cars.

File:Team4s21 final results video.MOV

Suggestions for further development