Introduction: Real Time Face Tracking Robot With Arduino and Matlab
Real time face tracking refers to the task of locating human faces in a video stream and tracking the detected or recognized faces.Nowadays , there are many real world applications of face detection and other image processing techniques.There are many algorithms like Viola Jones , Kanade-Lucas-Tomasi ,camshift etc. that are quite helpful in face detection.
In our project , we made use of some functions (in Matlab) that together make up the Viola-Jones face detection algorithm.We built a robot that tracks the movement of a face from the video stream using Matlab and Arduino.
Step 1: Components Used
- Arduino Uno Microcontroller.
Matlab software(R2012b , installed with arduino I/O support package).
Arduino IDE(1.0.6)
Servo Motors x 2.
Usb Webcam (Logitech 720p).
Jumper cables.
Step 2: Working
Codes could be found attached in this step.
- Firstly , code in Matlab detects a face from every frame of the live video stream and inserts a bounding box around the Region of Interest., which is a face in this case(by detecting some haar features present in the human faces).The project code follows the Viola Jones algorithm for face detection.
The set of frames with bounding boxes make up the addition of a bounding box around the face in live video.While adding a bounding box , we also calculate the coordinates of centroid of the bounding box.
These coordinates are sent as a string to the arduino UNO microcontroller., from Matlab and these are processed according to the code written on arduino IDE for the movement of motors.
During processing , the arduino gets the positions of PAN and TILT servo motors (that are attached as shown in the project image).Then , arduino checks if the centroid coordinates lie in the centre region of the screen. We are trying to move the camera in such a way that the centroid lies at the centre of the frame.(The pan and tilt servos are given to the digital pins 9 and 10 respectively...)
For this reason the frame is divided into left and right halves and also top and bottom halves.If the centroid falls in the left half , the camera is panned right and if it falls in the right half , camera is panned left and the same with the top and bottom halves and tilting.
Step 3: References and Team Members
Credits to(Team Members) :
- M.Bharath (bharath01028)
- A.Harika (Harika28)
- P.Jagadeesh
- M.K.Chaitanya
1 Person Made This Project!
- krishnachaithanya.movva made it!
66 Comments
4 years ago
I'm use this code. But when I run MATLAB and bbox appear. Servo motors rotate camera away. Make the bbox disappear.
Reply 2 years ago
so this is just my opinion and i have probably no room to talk, but you may have messed up the servo orientations. try making them face the other way so that they will go the right directions.
3 years ago
u have offer for this project , Call me 9033776464 Dhaval
Question 3 years ago on Step 3
can you made this application for me ?I want to use for industrial use.
call me 9033776464 Dhaval
Question 3 years ago on Step 3
Hi!
How can I upload code on Arduino Uno?
Ive a demo blink and runs correctly... but i want to run standalone
%% BLINK
for i = 1:20
writeDigitalPin(a, 'D13', 0);
pause(0.3);
writeDigitalPin(a, 'D13', 1);
pause(0.3);
end
4 years ago
Hello,
We have followed the instructions step by step, but in the end only the x axis tracks the face, whereas the y axis just rotates in one direction whenever it recognises the face. Is there any way we can fix this issue?
Reply 4 years ago
the same problem happens to me :c... I have followed step by step and nothing works with the y axis.. i
Question 4 years ago
Hello! Please answer, please.
How does the fopen(arduino) work? How does matlab know which arduino code file to access?
Answer 4 years ago
Typing in the right serial number and also open the file in Arduino
4 years ago
we are supposed to get an orange image in the video player pls debug this problem
Question 4 years ago
Hello, I am getting the error
"% Report error if one occurred.
if errorOccurred
if length(jobject) == 1
warning(warnState);
error(message('MATLAB:serial:fopen:opfailed', msg));
else
warning(message('MATLAB:serial:fopen:invalid'));"
How can I fix this?
Question 4 years ago
Hello, do you think I could see the cables and connections clearly? I can't see the cables using the video and images. I am new to arduino
5 years ago
Greetings. I am using the same code, but servo motor rotate camera in one direction only, once it moved in one direction, i want it to go back as face move to backward position, but it doesnot . how to tackle this
Reply 4 years ago
me too.
5 years ago
Nice work buddy...
Is the USB cable attached to arduino be replaced by a battery ? Is it used for power supply only or if not how can I make it laptop free ?
Reply 5 years ago
Yes, you can replace the USB with the battery ...
6 years ago
fopen(arduino);
this line gives me error
what do you think?
Reply 5 years ago
same
Reply 5 years ago
check this line, rename COM6 with your arduino com port,say COM14 etc
5 years ago
my matlab got stuck while loading the program whats the problem???