Undergraduate Research Under Professor Shaojie Shen
Overview of the project
Starting from 2018 I worked as an undergraduate research assistant in the HKUST Robotics Institute through UROP, the Undergraduate Research Opportunities Program.
I mostly worked in Professor Shaojie Shen's group, the HKUST Aerial Robotics Group and helped with documentation and tool chain construction and testing, I also wrote several software modules for the Mocka Swarm Project, one of which is displayed here.
Tool chain testing - VINS-Mono
When I first joined the group I helped in the VINS-Mono Project (A Robust and Versatile Monocular Visual-Inertial State Estimator ) in performing tests with the tool chain setup instructions. I went through the setup guide of the project and tried to identify errors and possible environment issues before providing feed back to the research group.
I also tested the newly added AR Module of the project and provided feedback and suggestions.
Simulation with VINS-Mono on one of the provided sample files
Simulation with the AR Module on sample file
Map Generation and Optimization- Mocka Swarm
I moved to the Mocka Swarm Project (a series of software packages in swarm robotics, currently not published) after the work in VINS-Mono was done.
I wrote a few map generation and optimization modules to create PointCloud Maps for testing with the Path Planning Module.
Detailed descriptions are provided below:
Map Optimization
This optimization optimizes the map by finding and deleting internal points (those surrounded by other points in all directions) to reduce the total number of points in the PointCloud.
The size of the PointCloud will thus be reduced, which leads to better run-time performance as less data processing are needed.
A cross section of the optimized map is shown on the left, which indicates desired internal voids.
2D Maze Generation
This module takes parameters such as random seed, path width, wall width, and map size with which it will then use the recursive division algorithm to randomly generate a 2D Maze in PointCloud form.
The map can then be used to test the Path Planning Module.
3D Maze Generation
This module takes parameters such as random seed, path width, wall width, cell count,and map size. It will then use a self designed algorithm to randomly generate a 3D Maze in PointCloud form.
The algorithm first creates random cores in the map space, then construct middle planes between these cores to generate a Voronoi Pattern. Finally, passages are cleared between random cells to create a maze.
The map can then be used to test the Path Planning Module.
Camera calibration documentation - Mocka Swarm
I also helped in constructing documentation on camera calibration of the Computer Vision Module.
I tested and improved the original instructions and added another section to include support for a different camera model. the PointGray Camera.
Some pictures with descriptions are provided below:
Calibration System
Hardware Setup
Calibration Process
Git Wiki Developed