Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

jaku-jaku/Autonomous-Maze-Solver-Stewart-Platform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proj_StewartPlatform

UW MTE 380 Course Project - 2021 Tron Authors: Jack, Jeremy, Tsugumi, Zong

IMG_4010_0003

Summary

Autonomous maze solver with Stewart Platform via a single WebCam.

Program Directory: ./Path_Finding

Possible Command line inputs:

  • For local image processing (demo) based on camera feeds from last successful detection

    python3 main.py -m static

  • For live image processing with live camera feeds

    python3 main.py -m run

  • For hsv calibration

    python3 main.py -m calib python3 main.py -m calib -c live

  • Optional* specifying usb.serial port:

    python3 main.py -m run -p /dev/tty.usbmodem146300

CV Outputs:

Software Demo
Software Demo

CAD Renders:

Stewart Platform CAD Render 1 Stewart Platform CAD Render 2

List of Items

Hardware List:

  • Servos x6
  • MCU board
  • WebCam: Logitech C270

Repo Contains:

  • Low level C code
  • Inverse Kinematics Python
  • Full integration of the solution
    • CV for maze detection and extraction
    • Framework for deploying algorithms
    • CV for marker detection and extraction
    • Grid Occupancy for binarizing maze
    • A star algorithm (using library)
    • Custom A* algorithm (Currently Used), with energy/heat map to make the path more centered and optimized
    • Control Algorithm and integration pipelines to hardware interface

System Sketch

System Design Sketch

Flow Chart of the completed pipeline:

Flow Chart

Actual Photo of the Platform

Stewart Platform P1 Stewart Platform P2

External_API