Final Project Documentation
Final Project Documentation
Please upload the final project documentation as a PDF file.
Also attach the source codes as a zip file to this forum.
Due by 11:59:59pm, Friday, June 8th
Sample Documentation
-----------------------------------
A Curious Robot
Jieliang Luo
Concept
Describe the concept of the project
-- some images --
Implementation Process
Describe how you implemented the project
-- some images --
Final Result
Discuss the final result and possible future improvements
-- some images from the show --
A link to the video [optional but highly encouraged]
Distribution of Labor
Discuss who was taking charge of which part of the project.
References
List the projects and codes that inspired you.
Also attach the source codes as a zip file to this forum.
Due by 11:59:59pm, Friday, June 8th
Sample Documentation
-----------------------------------
A Curious Robot
Jieliang Luo
Concept
Describe the concept of the project
-- some images --
Implementation Process
Describe how you implemented the project
-- some images --
Final Result
Discuss the final result and possible future improvements
-- some images from the show --
A link to the video [optional but highly encouraged]
Distribution of Labor
Discuss who was taking charge of which part of the project.
References
List the projects and codes that inspired you.
-
- Posts: 7
- Joined: Fri Jan 19, 2018 11:15 am
Re: Final Project Documentation
Hide-and-Seek Robot
by Christina Last and Ari Gillmore
Overview
Many similarities of the hide-and-seek game can be found in the interactions between humans, or robots and humans, in urban spaces, similar to looking for a person in a crowded urban environment (Goldhoorn et al. 2014). It is suggested that the game of hide-and-seek is an ideal domain for studying cognitive functions in robots and it is a basic mechanism for human robot interaction in mobile robotics, because hide-and-seek requires the robot to navigate, search, interact on, and predict actions of the opponent (Johansson and Balkenius 2005).
In this project we demonstrate an ability to program on Arduino & Raspberry Pi and communicate between the two systems, program in Python, focusing on OpenCV, and implement deep learning models on the robots to identify faces from purely visual inputs.
Concept
The concept is as follows: the project uses machine learning classification techniques to successfully find a hider by identifying the hider’s face, and move towards the human (the robot’s method of seeking). The visual information captured by the Pi camera is used to train the robot to find a hider. Through the artistic novelty of human-robot playing we explore the real-world implications in supporting human disaster response teams. For example, one of the many practical applications of this experiment is to find persons; as hide-and-seek could be seen as a simplification of search-and-rescue.
Implementation Process
There are two players, the hider (a person) and the seeker (the robot) and they play the game in free space. The game of hide and seek runs for a maximum number of timesteps. Within the number of time steps, the hider will attempt to move past the robot and collect a reward (perhaps enter a certain location in the room, or collect an item the robot is guarding). At each time step, the seeker will scan the room and capture images during the 360 degrees rotation. It will run a machine learning classification algorithm to identify faces from the captured images. Each image is serialised and is described by the angle at which the image was captured. When a face is identified, the robot chassis moves to the correct angle of orientation and forward in attempt to catch the hider. The process is repeated until the hider is successfully caught, or the hider wins.
Steps of implementation:
1. Capture an image at each angle during a single rotation
We anticipated that this experiment would give us important insights into the functionality of automates seeker methods used by a robot in real-world playing (interacting and predicting) against humans. We were able to successfully implement machine learning techniques by classifying faces from purely visual inputs. However, we were unable to implement model-based reinforcement learning to enable to robot to make a strategic movement. Instead, we extracted the angle of image, gave it a serial number, and sent this to the arduino to move to the specific angle, then move forward for a given distance.
In the future, we would like to find a better way of implementing the Processing visual with the automated robotic ‘seeking’. Because the images took up large amount of working memory on the Pi, the 360 scan and the face identification processing time increased significantly after the first round of seeking. We were also planning to ‘stitch’ the panorama of images the robot took, and visually display this to the audience. However, the multiple image stitching programmes we found were difficult to implement with the Pi and did not work well with over 4 images in the dataset. In addition, we would like to produce our own training data which identifies a ‘hider’ and a ‘base’. Using this training data, we can reward the ‘seeker’ when it completes a move that:
Overall, the success of this project can be assessed from the reactions at the MAT EoYS. We believe the audience felt engaged, inspired and even amused at the outcome of our project and the novelty of real-world play with a robot. Our project involved our audience visually and physically, and engaged them with questions such as “what situations can these techniques be adopted?”, and “what situations can these techniques be abused?”. Although the novelty of human-robot playing may evoke purely artistic expression, this experiment successfully explored the first steps toward real world search-and-rescue simulation.
Distribution of Labor
The distribution of labour is as follows:
Proposal Writing
M.A. Armada et al. (2013) ROBOT2013: First Iberian Robotics Conference, 505 Advances in Intelligent Systems and Computing, 253.
Johansson, E., Balkenius, C. (2005) It’s a child’s game: Investigating cognitive development with playing robots. In: International Conference on Development and Learning, vol. 164.
Luo, R. (2017) Collecting boxes in the Unreal. (available at: http://www.rodgerluo.com/projects/rl_drones.html).
Professor Craven. (2016) Example code for Polulu's Arduino-based Zumo 32U4 robot, (available at https://github.com/pvcraven/zumo_32u4_examples).
RodgerLuo (2018) UCSB Intelligent Machine Vision Course, (available at https://github.com/RodgerLuo/robotic-vi ... ion-course).
by Christina Last and Ari Gillmore
Overview
Many similarities of the hide-and-seek game can be found in the interactions between humans, or robots and humans, in urban spaces, similar to looking for a person in a crowded urban environment (Goldhoorn et al. 2014). It is suggested that the game of hide-and-seek is an ideal domain for studying cognitive functions in robots and it is a basic mechanism for human robot interaction in mobile robotics, because hide-and-seek requires the robot to navigate, search, interact on, and predict actions of the opponent (Johansson and Balkenius 2005).
In this project we demonstrate an ability to program on Arduino & Raspberry Pi and communicate between the two systems, program in Python, focusing on OpenCV, and implement deep learning models on the robots to identify faces from purely visual inputs.
Concept
The concept is as follows: the project uses machine learning classification techniques to successfully find a hider by identifying the hider’s face, and move towards the human (the robot’s method of seeking). The visual information captured by the Pi camera is used to train the robot to find a hider. Through the artistic novelty of human-robot playing we explore the real-world implications in supporting human disaster response teams. For example, one of the many practical applications of this experiment is to find persons; as hide-and-seek could be seen as a simplification of search-and-rescue.
Implementation Process
There are two players, the hider (a person) and the seeker (the robot) and they play the game in free space. The game of hide and seek runs for a maximum number of timesteps. Within the number of time steps, the hider will attempt to move past the robot and collect a reward (perhaps enter a certain location in the room, or collect an item the robot is guarding). At each time step, the seeker will scan the room and capture images during the 360 degrees rotation. It will run a machine learning classification algorithm to identify faces from the captured images. Each image is serialised and is described by the angle at which the image was captured. When a face is identified, the robot chassis moves to the correct angle of orientation and forward in attempt to catch the hider. The process is repeated until the hider is successfully caught, or the hider wins.
Steps of implementation:
1. Capture an image at each angle during a single rotation
- a. Determine how many photos are needed to capture all detail in a 360 degree rotation.
b. Using Arduino, accelerate chassis at correct speed for correct time to pause at each 30 degree angle in 360 rotation.
c. Using Arduino, send serial number to an ‘Image capture’ python program to take an image at each 30 degree angle.
d.Use facial recognition machine learning program to attempt to detect a face in each image.
e. Name image files ‘num.jpeg’ and send all image files to a folder called ‘Images’.
- a. Use the machine learning face classification programme to identify potential faces in each image.
b. Name each image containing a face ‘numFace.jpeg’ and send all face images to a folder called ‘FaceImages’.
- a. Use LCD screen on chassis to determine angle that image is captured from any given start angle (ranges from 0-(+180), 0-(-180)).
b. Use this angle as signal to send serial number from python, (identifying the angle of the selected image for the arduino).
c. Function in arduino to move forward a fixed amount (one step) at this given angle when serial is read.
- a. Create title and instruction slide in ‘star wars screen title theme’.
b. Draw live images into processing from ‘Images’ and ‘FaceImages’ folder and display them when specific keys are pressed.
c. Reset programme after one round of ‘seeking’ is complete.
We anticipated that this experiment would give us important insights into the functionality of automates seeker methods used by a robot in real-world playing (interacting and predicting) against humans. We were able to successfully implement machine learning techniques by classifying faces from purely visual inputs. However, we were unable to implement model-based reinforcement learning to enable to robot to make a strategic movement. Instead, we extracted the angle of image, gave it a serial number, and sent this to the arduino to move to the specific angle, then move forward for a given distance.
In the future, we would like to find a better way of implementing the Processing visual with the automated robotic ‘seeking’. Because the images took up large amount of working memory on the Pi, the 360 scan and the face identification processing time increased significantly after the first round of seeking. We were also planning to ‘stitch’ the panorama of images the robot took, and visually display this to the audience. However, the multiple image stitching programmes we found were difficult to implement with the Pi and did not work well with over 4 images in the dataset. In addition, we would like to produce our own training data which identifies a ‘hider’ and a ‘base’. Using this training data, we can reward the ‘seeker’ when it completes a move that:
- - Minimises the distance of the seeker from the hider (dsh)
- Maximses the hider from the base (dhb)
- The distance of the seeker from the base is less than the distance of the hider from the base (dsb < dhb).
Overall, the success of this project can be assessed from the reactions at the MAT EoYS. We believe the audience felt engaged, inspired and even amused at the outcome of our project and the novelty of real-world play with a robot. Our project involved our audience visually and physically, and engaged them with questions such as “what situations can these techniques be adopted?”, and “what situations can these techniques be abused?”. Although the novelty of human-robot playing may evoke purely artistic expression, this experiment successfully explored the first steps toward real world search-and-rescue simulation.
Distribution of Labor
The distribution of labour is as follows:
Proposal Writing
- Content - Christina
Layout - Christina
- Arduino code - Ari and Christina
Python code - Ari and Christina
- Python code - Ari and Christina
- Arduino code - Ari
Python code - Ari
- Processing code - Christina
- Delivery - Ari and Christina
- Content - Christina
Layout - Ari
Film - Christina
- Delivery - Ari
M.A. Armada et al. (2013) ROBOT2013: First Iberian Robotics Conference, 505 Advances in Intelligent Systems and Computing, 253.
Johansson, E., Balkenius, C. (2005) It’s a child’s game: Investigating cognitive development with playing robots. In: International Conference on Development and Learning, vol. 164.
Luo, R. (2017) Collecting boxes in the Unreal. (available at: http://www.rodgerluo.com/projects/rl_drones.html).
Professor Craven. (2016) Example code for Polulu's Arduino-based Zumo 32U4 robot, (available at https://github.com/pvcraven/zumo_32u4_examples).
RodgerLuo (2018) UCSB Intelligent Machine Vision Course, (available at https://github.com/RodgerLuo/robotic-vi ... ion-course).
- Attachments
-
- Final Documentation 2.pdf
- PDF Version of our final documentation
- (1.83 MiB) Downloaded 3992 times
-
- Posts: 7
- Joined: Wed Jan 11, 2017 10:40 am
Re: Final Project Documentation
Attached is our source code zip file and a link to our video.
https://drive.google.com/file/d/1zotG3N ... sp=sharing
https://drive.google.com/file/d/1zotG3N ... sp=sharing
-
- Posts: 3
- Joined: Mon Apr 16, 2018 10:28 am
Re: Final Project Documentation
ART185 Optical Digital Culture - Intelligent Machine Vision
Dream Catcher
An Autonomous Robot that Dreams
Roberto Gonzalez
Adam Jhanke
Chris Hoang
Dream Catcher
An Autonomous Robot that Dreams
Roberto Gonzalez
Adam Jhanke
Chris Hoang
- Attachments
-
- Source codes .zip
- (12.12 KiB) Downloaded 1255 times
-
- DC Final Report.pdf
- (1.83 MiB) Downloaded 2629 times
Re: Final Project Documentation
Scavenger Hunt
Attached are documentation and codes for our project.
Thanks for an amazing quarter and all the guidance. Good luck in your future endeavors, Rodger!
-Kara Newman and Margie Fargas
Attached are documentation and codes for our project.
Thanks for an amazing quarter and all the guidance. Good luck in your future endeavors, Rodger!
-Kara Newman and Margie Fargas
- Attachments
-
- Art 185 Final Codes.zip
- (295.41 KiB) Downloaded 1288 times
-
- Final Project Documentation.pdf
- (720.56 KiB) Downloaded 1254 times
-
- Posts: 2
- Joined: Mon Apr 16, 2018 10:28 am
Re: Final Project Documentation
Attached is a .pdf and .zip file documenting the process for our project "AMP"
By:
- Chloe Hopen
- Janet Diaz
- Steven Howard
By:
- Chloe Hopen
- Janet Diaz
- Steven Howard
- Attachments
-
- Documentation_AMP-.pdf
- (83.95 KiB) Downloaded 1305 times
-
- Archive.zip
- (2.47 KiB) Downloaded 1276 times
Re: Final Project Documentation
Please find attached the pdf file for groups 2 and 6.
The zip file is linked here: https://drive.google.com/file/d/1c1PPpw ... sp=sharing
Emily Beckius
Lawrence Chen
Adrian Esqueda
Yichen Li
Wen Ying Liu
The zip file is linked here: https://drive.google.com/file/d/1c1PPpw ... sp=sharing
Emily Beckius
Lawrence Chen
Adrian Esqueda
Yichen Li
Wen Ying Liu
- Attachments
-
- Documentation.pdf
- (1.06 MiB) Downloaded 2645 times
Re: Final Project Documentation
https://drive.google.com/open?id=1AJAky ... _TyUjeiaPd
I couldn't upload our final documentation as the file sizes were too large but here's a link!
I couldn't upload our final documentation as the file sizes were too large but here's a link!
Re: Final Project Documentation
PDF of final project report.
- Chantel Chan
- Wilson Mui
- Annika Tan
- Chantel Chan
- Wilson Mui
- Annika Tan
- Attachments
-
- art185_finalslides.pdf
- (689.83 KiB) Downloaded 1268 times