项目作者: SamGarlick

项目描述 :
An open-source toolkit for self driving racing car development.
高级语言: HTML
项目地址: git://github.com/SamGarlick/OFSAI-Toolkit.git
创建时间: 2020-02-28T12:34:38Z
项目社区:https://github.com/SamGarlick/OFSAI-Toolkit

开源协议:

下载


OFSAI-Toolkit

An easy-to-use, open-source toolkit for self driving racing car development. Please try and improve on the tools offered and contribute to help everyone.

Features:

  • Cone detection
  • Cone Mapping
  • Track Boundary Estimation
  • Waypoint Generation

TODO:

  • Racing line calculation
  • Car Physics
  • On-the-line custom track maker
  • Yolo Trains Via Data generator where each imagine is loaded differently with random alterations
  • Visualise 3D track
  • Driver model
  • SLAM (EKF)
  • Compile to Cython

Contents

  1. Objects
  2. Visualisations
  3. Perception
  4. Mapping
  5. Track Boundary Estimation

1. Objects

This repository comes with, and utilises, a few objects that represent objects found in the FS-AI competition.

1.1. Point

Used to represent the position of an object in 2D.

  1. from fsai.objects.point import Point
  2. point = Point(x, y)

1.2. Cone

Used to represent a cone in the track. Each cone contains a point object representing the position of a cone, as well as the colour of the cone.

  1. from fsai.objects.cone import Cone
  2. fsai.objects.cone.CONE_COLOR_BLUE = 0
  3. fsai.objects.cone.CONE_COLOR_YELLOW = 1
  4. fsai.objects.cone.CONE_COLOR_BIG_ORANGE = 2
  5. fsai.objects.cone.CONE_COLOR_ORANGE = 3

The cone object can be constructed as follows:

  1. cone = Cone() # blue cone at 0, 0
  2. cone = Cone(point=Point(9, 2), color=CONE_COLOR_YELLOW) # yellow cone at 9, 2
  3. cone = Cone(x=4, y=6, color=CONE_COLOR_ORANGE) # orange cone at 4, 6

1.3. Line

Object containing two points. Used to represent lines such as track boundaries.

  1. from fsai.objects.line import Line
  2. line = Line(a=Point(0, 0), b=Point(1, 0))

1.4. Track

An object used to encapsulate cones into one handy class.

  1. from fsai.objects.track import Track
  2. track = Track()

Additionally this class allows you to save and load tracks in the json format:

  1. {
  2. "blue_cones": [
  3. {"x": 1.25, "y": -14.75},
  4. {"x": 5, "y": -15.5}
  5. ],
  6. "yellow_cones": [
  7. {"x": 2.875, "y": -9.875},
  8. {"x": 6, "y": -10.375}
  9. ],
  10. "big_cones": [
  11. {"x": -2, "y": -13.625},
  12. {"x": -3.75, "y": -12.875}
  13. ],
  14. "orange_cones": []
  15. }
  1. import json
  2. from fsai.objects.track import Track
  3. # Loading
  4. track = Track("examples/data/tracks/laguna_seca.json")
  5. # -or-
  6. track.load_track("examples/data/tracks/brands_hatch.json")
  7. # Saving
  8. track.save_track("output_track.json")
  9. # -or-
  10. with open("file", "w+") as file:
  11. file.write(json.dumps(track.to_json()))

2. Visualisations

2.1. Image Annotations

Annotates a given image with given annotations, returning an openCV formatted image.
<class> <x> <y> <w> <h>
(Relative to the size of the image)

Parameters:

labels_path - If provided, the labels will be loaded from a file destination
label_annotations - If provided, the annotations will be draw from the given information
image_path - If provided the image will load from the provided path
image - If provided the labels will be draw onto this opencv image
colors - If provided the annotations will use the colours provided. By default colours are procedural generated
class_names - If provided the annotations will draw class names as well
line_width - Annotations will be draw with the width provided
returns - OpenCV Image

Example Usages:

  1. from fsai.visualisation.image_annotations import annotate
  2. image = annotate(labels_path="labels/0.txt", image_path="images/0.jpg", colors=[(255, 0, 0), (0, 255, 0)], line_width=10)
  3. cv2.imshow("Cones", image)
  4. cv2.waitKey(0)
  1. from fsai.visualisation.image_annotations import annotate
  2. image = cv2.imread("images/1.png")
  3. annotations = [
  4. [0, 0.4, 0.6, 0.25, 0.25],
  5. [1, 0.8, 0.8, 0.1, 0.1],
  6. ]
  7. image = annotate(image=image, label_annotations=annotations, class_names=["dog", "plane"], line_width=2)
  8. cv2.imshow("Cones", image)
  9. cv2.waitKey(0)

2.2. 2D Track Renderer

This method is used to draw the given items in the scene onto an image. Cones and lines can be provided,
additionally the image can be scaled and padded for aesthetic reasons. Colours can be customised to suit
you liking by altering the method parameters.

Parameters:

track - If provided, the track data will be draw.
cones - If provided, these cones will be drawn.
blue_cones - If provided, these cones will be drawn.
yellow_cones - If provided, these cones will be drawn.
orange_cones - If provided, these cones will be drawn.
big_cones - If provided, these cones will be drawn.
blue_lines - If provided, these lines will be drawn.
yellow_lines - If provided, these lines will be drawn.
orange_lines - If provided, these lines will be drawn.
waypoints - If provided, these waypoints will be draw.
blue_line_colour - The colour in which to render blue lines.
yellow_line_colour - The colour in which to render yellow lines.
orange_line_colour - The colour in which to render orange lines.
blue_cone_colour - The colour in which to render blue cones.
yellow_cone_colour - The colour in which to render yellow cones.
orange_cone_colour - The colour in which to render orange cones.
big_cone_colour - The colour in which to render big orange cones.
background - Background greyscale color to draw the scene onto (0 - 255) (int).
scale - Scale the image of the track.
padding - Add padding around the image.
return - OpenCV Image.

Example Usages:

  1. from fsai.objects.track import Track
  2. from fsai.visualisation.draw_opencv import draw_track
  3. track = Track("examples/data/tracks/laguna_seca.json")
  4. image = draw_track(track=track)
  1. from fsai.objects.track import Track
  2. from fsai.visualisation.draw_opencv import draw_track
  3. track = Track("examples/data/tracks/imola.json")
  4. blue_lines, yellow_lines, orange_lines = track.get_boundary()
  5. image = draw_track(
  6. track=track,
  7. blue_lines=blue_lines,
  8. yellow_lines=yellow_lines,
  9. orange_lines=orange_lines,
  10. background=100,
  11. scale=20,
  12. padding=50
  13. )

3. Perception

doc coming soon…

4. Mapping

doc coming soon…

5. Track Boundary Estimation

doc coming soon…

6. Path Planning

6.1 Waypoint Generation

doc coming soon…

6.2 Path Prediction

doc coming soon…