Author Topic: help...Need to make a wireless robot with cam  (Read 1898 times)

0 Members and 1 Guest are viewing this topic.

Offline manishrcTopic starter

  • Beginner
  • *
  • Posts: 2
  • Helpful? 0
help...Need to make a wireless robot with cam
« on: February 08, 2010, 09:23:53 PM »
hi all. I'm a beginner.

i need to build a robot driving to wheels.

controlled wirelessly through a laptop

and need to have atleast 4 channels

transmit video from 2 cameras to the laptop(range 100m)

 

presently i'm using arduino to control the robot.

please suggest me what i can use to make those above possible.

i lesser range will do.
thanks :)

Offline guncha

  • Jr. Member
  • **
  • Posts: 40
  • Helpful? 0
Re: help...Need to make a wireless robot with cam
« Reply #1 on: February 09, 2010, 08:21:52 AM »
What you need to make above possible is some serious dough for things like:

* onboard computer with decent processing speed (so it can run something like linux) with a USB host
   something along the lines of these two:
   http://www.gumstix.com/store/catalog/product_info.php?products_id=211
   http://www.robotshop.ca/bipom-arm9-gadgetpc-arm-linux-or-debian.html

* two webcams, obviously. spend as much as you care about quality, but make sure that they support
   hardware compression (MJPEG is fine). that means less strain on CPU and smoother playback.

* USB wireless adapter with an external antenna jack, so you can plug in a more powerful antenna and
   extend the usable range. also, I've heard rumors that the new N standard does wonders in this regard.

* USB hub to plug it all in.

* and of course the robot chasis.

After you have all of this, it's a matter of pluging everything together, setting up linux and writing some software to control the robot from the computer. Easy peasy ;)

Offline Soeren

  • Supreme Robot
  • *****
  • Posts: 4,672
  • Helpful? 227
  • Mind Reading: 0.0
Re: help...Need to make a wireless robot with cam
« Reply #2 on: February 09, 2010, 11:45:36 AM »
Hi,

[...] transmit video from 2 cameras to the laptop(range 100m)
Just use wireless CCTV cams and a receiver at the laptop, then you've got that part covered.
(They can be bought off eBay for cheap).
Regards,
Søren

A rather fast and fairly heavy robot with quite large wheels needs what? A lot of power?
Please remember...
Engineering is based on numbers - not adjectives

Offline Webbot

  • Expert Roboticist
  • Supreme Robot
  • *****
  • Posts: 2,165
  • Helpful? 111
    • Webbot stuff
Re: help...Need to make a wireless robot with cam
« Reply #3 on: February 09, 2010, 12:38:21 PM »
You need to think about transmission rates from the cameras back to the PC. This will depend upon the screen resolution.
As a hint: the avrcam using 172x144 resolution takes about 4 seconds to transmit a single frame (with no compression encoding) using 115,200 baud.
You've got 2 cameras.
Thats why most cameras encourage you to do all the image processing on the camera board itself and then just xmit your results over the uart.

Webbot Home: http://webbot.org.uk/
WebbotLib online docs: http://webbot.org.uk/WebbotLibDocs
If your in the neighbourhood: http://www.hovinghamspa.co.uk

Offline guncha

  • Jr. Member
  • **
  • Posts: 40
  • Helpful? 0
Re: help...Need to make a wireless robot with cam
« Reply #4 on: February 10, 2010, 12:15:55 AM »
As this guy wants to make a peeping robot with stereoscopic vision (meaning, that's what I'd make if I had all the parts) (hehehe, 3D peeping), any camera that connects using UART is out of the question. For live video feeds USB is the only way to go or if you're interested in truly high quality images of neighbors, analog video camera connected to hardware mpeg encoder will give you DVD-like quality (unfortunately, I haven't found any robotics-suitable controllers that had PCI ports for tuner cards).

I actually looked up these things some time ago and Microsoft LifeCam HD looks like a perfect candidate for surveillance robots (is UVC camera so no linux drivers needed + supports hardware mjpeg + HD thing doesn't hurt).

Just my two cents.

Offline Webbot

  • Expert Roboticist
  • Supreme Robot
  • *****
  • Posts: 2,165
  • Helpful? 111
    • Webbot stuff
Re: help...Need to make a wireless robot with cam
« Reply #5 on: February 10, 2010, 12:23:17 AM »
Ok so UART is out. USB may be a goer - but make sure your PC uses USB2.0 at least.

You can reduce comms by compressing the images - but make sure you have something on the pc that can de-compress the images. (I know thats obvious - but worth mentioning),
Webbot Home: http://webbot.org.uk/
WebbotLib online docs: http://webbot.org.uk/WebbotLibDocs
If your in the neighbourhood: http://www.hovinghamspa.co.uk