Object tracking / chasing robot

Posted on 15/01/2014 by karlhm
Modified on: 13/09/2018
Project
Press to mark as completed
Introduction
This is an automatic import from our previous community platform. Some things can look imperfect.

If you are the original author, please access your User Control Panel and update it.

Using openCV running on a completely underpowered laptop to identify and track an object. For this proof of concept, a blue ball is tracked. I send calculated servo positions via serial comms to the Arduino over USB for servo movement. When the object is lost from the camera frame, it will begin a search pattern using the pan/tilt camera mount (this is currently not implemented, and probably wont be until after uni exams). Upon finding the object, it will move towards it. Robot movement/obstacle ...


Object tracking / chasing robot

Using openCV running on a completely underpowered laptop to identify and track an object. For this proof of concept, a blue ball is tracked. I send calculated servo positions via serial comms to the Arduino over USB for servo movement. When the object is lost from the camera frame, it will begin a search pattern using the pan/tilt camera mount (this is currently not implemented, and probably wont be until after uni exams). Upon finding the object, it will move towards it.

Robot movement/obstacle detection will be handled by Arduino as well. The laptop will determine object position relative to pan/tilt position and then move robot towards that location by sending commands to Arduino via serial. I have ordered tracks and chassis. I already have a Tamiya dual motor gearbox and motor shield for Arduino ready to be hooked up.

I have plans to maybe in the future change the object tracking from a blue ball to face / back-of-head tracking and have it follow me (or chase the kids or dog) around the house. That is a bit of a way off though. I want to get the movement happening first.

I have created this object tracking portion of the project as a proof of concept, and using the completely underpowered and slightly damaged, but mostly working Celeron 900 netbook I had lying around with Linux on it, it performs reasonably well. I have plans to replace the laptop with a 2xARM Pandaboard and a suitable power source to increase framerates, but funds are very limited at the moment. I'm hoping to source an old Core2 Duo laptop from a work colleague, but I fear it may be too large for the chassis to tow around.

 

Update 09/03/14

Implemented camera search functions during holidays a couple of weeks ago.

The most exciting thing was testing the ardumoto shieldl this evening. The test was extremely basic and simply involved manually typing the control string to the arduino where it was interpreted. In reality, the computer will construct this string and write it to the arduino over USB. This does work, but there is no movement logic at the moment, and it isn't exactly mobile.

Movement logic to follow and I've got a couple of IR distance sensors to add into the mix as well. I'll complete this stage possibly after this semester in a few months (if I want to pass everything).

I'm just about at the stage where I really need to start to get the cash together to buy a power supply and most importantly, the pandaboard for this project. This will enable mobility.

Then a bit of time to learn how to cross-compile what I've done so far, then throw everything into the chassis and see how it goes.

 

Update 17/04/14

Completely redesigned the chassis, it is now 3 levels. This was necessary to make more room for the battery pack, voltage regulators and everything else.

I gave up on the Pandaboard becuse apparently they don't make them any more. They tell me this after waiting a month for my order, delayed 3 times... so I ordered an odroid-u3 and it should arrive next week!

 

Update 08/05/14

oDroid arrived and installed. Built my own kernel based on Linaro. Seems to work pretty well.

I am having trouble getting Netbeans to build the project properly, so I am reduced to building some of the project in Netbeans and then finishing it off and linking on the oDroid itself. Fortunately this is not too hard. The problems were introduced as soon as I decided to attempt multithreading implemented in its own class. Netbeans does not build the dependencies in the correct order and this produces a linker error.

The oDroid is fast. Previously movement commands were pulsing to the Arduino and I could tell this by the flashing of the i/o LED. Now it is processing so quickly the LED appears to stay lit! I also reduced the resolution to 320x240 and it is performing very well.

The dramatic speed increase is attributed to a few things:

  • Each oDroid core is almost twice as fast as the single core celeron laptop I was previously using.
  • Image resolution reduction. (I could reduce resolution further, but there doesn't seem to be a need to at this stage.)
  • No waitkey - there is no need for the main thread to wait for input to exit the program. The program is designed to run automatically after oDroid boot, until power is removed.
  • Multiple threads are used for the image processing pipeline.

I have two worker threads, soon to expand to three or four. Currently one grabs frames from the camera, the other processes them and writes the result. The main thread picks this up and sends it to the Arduino. I want to separate this process into a third thread and add another one to listen for feedback from the Arduino. Currently there is no feedback, but for sensor integration there will need to be.

Next step is working on the power system. I have sourced a battery and ordered voltage regulators for the electronics, motors and sensors. I am keen to connect the servos again and see how fast the camera movement is now.

I will integrate the sensors into the code as well, and work out some kind of feedback system now that I have multithreading in C++ using posix threads pretty much worked out. This is planned to be done soon. Uni exams around the corner so I probably will have to study my arse off. Working out the multithreading issues took a couple of days...

 

Update 19/05/14

My voltage converters arrived so I took some time in between maths assignments to connect one up. I had a bit of trouble finding a power supply with enough amperage to drive the thing, but I eventually found a laptop power supply with 3.4A which was enough to perform some basic testing with one servo connected.

The circuit has the potential to draw 10.5A, but it will generally be in the range of 4-6A if my rough calculations are anywhere close.

I am quite pleased with the result. The tracking jerkiness is a result of the tolerance I have built in - the ball can move almost to the edge of the frame before it signals the servos to reposition the camera. The code itself tracks the ball close to realtime. I must be getting close to 30fps and a very stable image. I did need to reduce the resolution to 160x120 though, and I adjusted the "roundness" parameter of the HoughCircle function to be a bit more forgiving. The trade off is more false positives, but I'll see how it goes once the battery arrives and it finally becomes mobile!

Uses openCV to track and chase a coloured object

  • Actuators / output devices: Tamiya Gearbox, Tamiya tracks, 2 Servo Pan/Tilt
  • CPU: Arduino, Celeron 900 netbook
  • Operating system: Arduino, Ubuntu (Linux)
  • Power source: Laptop
  • Programming language: C++
  • Sensors / input devices: Webcam, Sharp IR sensors
  • Target environment: Indoors is best
LikedLike this to see more

Spread the word

Flag this post

Thanks for helping to keep our community civil!


Notify staff privately
It's Spam
This post is an advertisement, or vandalism. It is not useful or relevant to the current topic.

You flagged this as spam. Undo flag.Flag Post