Skip to content

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 …

Notifications You must be signed in to change notification settings

ChristinaLast/hide-and-seek-robot

Repository files navigation

Hide-and-Seek Robot

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.

Demoing our Robot at the MAT End of Year Show

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.

Arduino code to change angle of chassis

Figure 1: Part of Ardunio code where one can see how we implemented the angles that the robot turned at and the signals it sent to the Raspberry Pi.

Python code to capture image when each angle is reached

Figure 2: Part 1 of Python Code: Reading in the serial number from the Arduino, so the Raspberry Pi knows when to take an image.

Python code to identify faces from images captured

Figure 3: Python 2 Code Part: Checks each image saved in the images folder to see if there is a face. If there is a face send that number to the Arduino, if not send a random number. Wait for Arduino to send next serial number to delete the old images and restart the process.

Steps of implementation:

  1. Capture an image at each angle during a single rotation
  • Determine how many photos are needed to capture all detail in a 360 degree rotation.
  • Using Arduino, accelerate chassis at correct speed for correct time to pause at each 30 degree angle in 360 rotation.
  • Using Arduino, send serial number to an ‘Image capture’ python program to take an image at each 30 degree angle.
  • Use facial recognition machine learning program to attempt to detect a face in each image.
  • Name image files ‘num.jpeg’ and send all image files to a folder called ‘Images’.
  1. Detect the face of the hider
  • Use the machine learning face classification programme to identify potential faces in each image.
  • Name each image containing a face ‘numFace.jpeg’ and send all face images to a folder called ‘FaceImages’.
  1. Move robot towards hider
  • Use LCD screen on chassis to determine angle that image is captured from any given start angle (ranges from 0-(+180), 0-(-180)).
  • Use this angle as signal to send serial number from python, (identifying the angle of the selected image for the arduino).
  • Function in arduino to move forward a fixed amount (one step) at this given angle when serial is read.
  1. Develop programme to display images to public
  • Create title and instruction slide in ‘star wars screen title theme’.
  • Draw live images into processing from ‘Images’ and ‘FaceImages’ folder and display them when specific keys are pressed.
  • Reset programme after one round of ‘seeking’ is complete.

Final Result

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 (d sh )
  • Maximses the hider from the base (d hb )
  • The distance of the seeker from the base is less than the distance of the hider from the base (d sb < d hb ).

Because of the time limitation on the project we were unable to generate enough training data and implement the reward function we created. 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.

About

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 …

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published