Difference between revisions of "Projects:2021s1-13413 360˚ Camera Dolly/Rig"

From Projects
Jump to: navigation, search
(Created page with "Category:Projects Category:Final Year Projects 13413 == Introduction == Virtual Reality (VR) is increasingly prevalent technology that is seeing us...")
 
Line 3: Line 3:
 
[[Category:2021s1|13413]]
 
[[Category:2021s1|13413]]
 
== Introduction ==
 
== Introduction ==
Virtual Reality (VR) is increasingly prevalent technology that is seeing use across a lot of industries. Mainly in the electronic entertainment industry such as video games. However VR can also be used for educational purposes where a user can be placed in simulated environment where they may gain experience and insight by interacting with the said environment.
+
Virtual Reality (VR) is increasingly prevalent technology that is seeing use across a lot of industries. Mainly in the electronic entertainment industry such as video games. However VR can also be used for educational purposes where a user can be placed in simulated environment where they may gain experience and insight by interacting with the environment [1]. The purpose of the 360° Camera Dolly/Rig Project is to create a camera dolly/rig with a mounted 360° camera. The rig will be operated remotely such that the camera can capture footage to be used in a VR simulation without unneeded intrusion. A prototype of this Rig has been built by the Engineering Students of the University of Adelaide in 2019, this year's iteration aim's to improve various aspects of said prototype for better functionality.
The purpose of the 360° Camera Dolly/Rig Project is to create a camera dolly/rig with a mounted 360° camera. The rig will be operated remotely such that the camera can capture footage to be used in a VR simulation without unneeded intrusion. A prototype of this Rig has been built by the Engineering Students of the University of Adelaide in 2019, this year's iteration aim's to improve various aspects of said prototype for better functionality.
 
 
=== Project team ===
 
=== Project team ===
 
==== Project students ====
 
==== Project students ====
Line 12: Line 11:
 
* Said Al-Sarawi
 
* Said Al-Sarawi
 
* Hong Gunn Chew
 
* Hong Gunn Chew
=== Objectives ===
+
==== Advisors ====
Set of objectives
+
* Adelaide Nursing School
 +
=== Aims ===
 +
==== Goal ====
 +
* Develop the prototype of project in 2019 with better performance.
 +
==== Objectives ====
 +
* Improve the control method to reduce the control delay for every actions of the rover.
 +
* Improve the rover movement to have a gradual speed change.
 +
* Develop a better collision avoidance system to detect any obstacles on its way and eliminate collision damage to the rover.
 +
* Reduce the noise generated from rover to improve audio recording quality.
 +
* Fix the rover mast to obtain a stable camera view.
  
== Background ==
+
== Method ==
=== Topic 1 ===
+
=== Modular Systems Design ===
 +
Design different systems with multiple modules to make each system independent to the others, only reacts through the system interfaces. This will provide clearer view of each systems, and easy to test and modify a system without interrupting the others. The rover will use the following systems to perform designed functions. After all systems are completed, integral these systems together to generate the rover program. Run the rover program on the main control board will driver the rover with designed function.
 +
==== Main System (Control System) ====
 +
The main system of the rover to control and manage the other systems. Run this system at the beginning to initialise the rover and manage the used resources.
 +
==== Sensing System (Collision Avoidance System) ====
 +
A sensing system to detect obstacles and void rover collision. This system will interact with the movement system to limit the top speed and eliminate collision damage.
 +
==== Controller System (Signal Receiver System) ====
 +
An input system to receive control signals from a controller (signal transmitter) through a signal receiver on the rover. The will provide user interfaces during the running of rover. Users can control the rover with a main controller.
 +
==== Movement System (Motor System) ====
 +
An output system to perform the basic movement of the rover controlled by a controller. This system will interact with the sensing system to avoid collision and eliminate collision damage by limiting the maximum speed of driver wheels.
 +
==== Height Change System (Actuator System) ====
 +
An output system to control the mast of rover. This can change the camera height by extending or retracting the mast to simulate different human heights.
 +
==== Recording System (Camera System) ====
 +
An independent system to record educational videos using a 360 degree camera. The view of camera will be sent to a VR equipment directly and will not be interacted with the other systems.
  
== Method ==
+
=== Better Function Analysis ===
 +
Since this project will work based on the preview project prototype, the new rover will keep using some designed components which have acceptable performance and functionality from the prototype. The team will analysis the functions and performance that need to be improved, and replace with better components, better structures, or better coding algorithms.
 +
* Use single control board rather than two, to provide faster control and update rate to reduce control delay.
 +
* Use single motor driver with two geared motors to improve the movement control, provide less speed up acceleration, and reduce the noise generated from the motors.
 +
* Use common driver wheels rather than mecanum wheels to move the rover stabler and eliminate the noise generated from the wheels.
 +
* Use a 1-meter linear actuator to replace the original mast to provide stable camera view and eliminate the noise generated from the mast.
 +
* Use a Raspberry Pi Model 3B rather than Arduino board to provide real time control and reduce the data processing lag.
 +
* Use C++ rather than python to develop the software part to reduce control delay and perform detailed control.
  
 
== Results ==
 
== Results ==
Line 25: Line 53:
  
 
== References ==
 
== References ==
[1] a, b, c, "Simple page", In Proceedings of the Conference of Simpleness, 2010.
+
[1] E. Hu-Au, "Virtual Reality, Education, and Constructivism Theory", Virtual Reality for Education, 2017. [Online]. Available: https://virtualrealityforeducation.com/virtual-reality-educational-possibilities-constructivist-learning/. [Accessed: 08- Apr- 2021].
  
 
[2] ...
 
[2] ...

Revision as of 17:57, 24 October 2021

Introduction

Virtual Reality (VR) is increasingly prevalent technology that is seeing use across a lot of industries. Mainly in the electronic entertainment industry such as video games. However VR can also be used for educational purposes where a user can be placed in simulated environment where they may gain experience and insight by interacting with the environment [1]. The purpose of the 360° Camera Dolly/Rig Project is to create a camera dolly/rig with a mounted 360° camera. The rig will be operated remotely such that the camera can capture footage to be used in a VR simulation without unneeded intrusion. A prototype of this Rig has been built by the Engineering Students of the University of Adelaide in 2019, this year's iteration aim's to improve various aspects of said prototype for better functionality.

Project team

Project students

  • Harrison Boyce
  • Dongshen Huang

Supervisors

  • Said Al-Sarawi
  • Hong Gunn Chew

Advisors

  • Adelaide Nursing School

Aims

Goal

  • Develop the prototype of project in 2019 with better performance.

Objectives

  • Improve the control method to reduce the control delay for every actions of the rover.
  • Improve the rover movement to have a gradual speed change.
  • Develop a better collision avoidance system to detect any obstacles on its way and eliminate collision damage to the rover.
  • Reduce the noise generated from rover to improve audio recording quality.
  • Fix the rover mast to obtain a stable camera view.

Method

Modular Systems Design

Design different systems with multiple modules to make each system independent to the others, only reacts through the system interfaces. This will provide clearer view of each systems, and easy to test and modify a system without interrupting the others. The rover will use the following systems to perform designed functions. After all systems are completed, integral these systems together to generate the rover program. Run the rover program on the main control board will driver the rover with designed function.

Main System (Control System)

The main system of the rover to control and manage the other systems. Run this system at the beginning to initialise the rover and manage the used resources.

Sensing System (Collision Avoidance System)

A sensing system to detect obstacles and void rover collision. This system will interact with the movement system to limit the top speed and eliminate collision damage.

Controller System (Signal Receiver System)

An input system to receive control signals from a controller (signal transmitter) through a signal receiver on the rover. The will provide user interfaces during the running of rover. Users can control the rover with a main controller.

Movement System (Motor System)

An output system to perform the basic movement of the rover controlled by a controller. This system will interact with the sensing system to avoid collision and eliminate collision damage by limiting the maximum speed of driver wheels.

Height Change System (Actuator System)

An output system to control the mast of rover. This can change the camera height by extending or retracting the mast to simulate different human heights.

Recording System (Camera System)

An independent system to record educational videos using a 360 degree camera. The view of camera will be sent to a VR equipment directly and will not be interacted with the other systems.

Better Function Analysis

Since this project will work based on the preview project prototype, the new rover will keep using some designed components which have acceptable performance and functionality from the prototype. The team will analysis the functions and performance that need to be improved, and replace with better components, better structures, or better coding algorithms.

  • Use single control board rather than two, to provide faster control and update rate to reduce control delay.
  • Use single motor driver with two geared motors to improve the movement control, provide less speed up acceleration, and reduce the noise generated from the motors.
  • Use common driver wheels rather than mecanum wheels to move the rover stabler and eliminate the noise generated from the wheels.
  • Use a 1-meter linear actuator to replace the original mast to provide stable camera view and eliminate the noise generated from the mast.
  • Use a Raspberry Pi Model 3B rather than Arduino board to provide real time control and reduce the data processing lag.
  • Use C++ rather than python to develop the software part to reduce control delay and perform detailed control.

Results

Conclusion

References

[1] E. Hu-Au, "Virtual Reality, Education, and Constructivism Theory", Virtual Reality for Education, 2017. [Online]. Available: https://virtualrealityforeducation.com/virtual-reality-educational-possibilities-constructivist-learning/. [Accessed: 08- Apr- 2021].

[2] ...