Offline
Jr. Member
Karma: 0
Posts: 62
|
 |
« on: August 19, 2011, 06:49:42 pm » |
Had question as to anyone would know whether this would be possible to do with the ardunio Mega.
I want to be able to interface with a camera, send a signal to snap a picture, and then store that picture in a external memory chip.
Thanks
|
|
|
|
|
Logged
|
|
|
|
|
The people's republic of Massachusetts
Offline
Full Member
Karma: 0
Posts: 121
|
 |
« Reply #1 on: August 19, 2011, 08:05:02 pm » |
when you say store the picture, are you intending on having the Arduino handle the data or the camera?
That can be a lot of data depending on the camera resolution.
|
|
|
|
|
Logged
|
|
|
|
|
New Jersey
Offline
Edison Member
Karma: 24
Posts: 2348
|
 |
« Reply #2 on: August 20, 2011, 08:12:10 am » |
Depends on the camera. Problem is, the arduino has very little RAM, and images are generally orders of magnitude too big for it, so you need to be able to pull the image in chunks and push them to an SD card - some cameras allow this. Also, you'll be reading the image on the serial port, which is slow - it'll take a long time for each image, where a 'long' time may be measured in minutes.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 62
|
 |
« Reply #3 on: August 20, 2011, 07:50:43 pm » |
Both, take the picture and then store the data in an EPROM chip somewhere.
|
|
|
|
|
Logged
|
|
|
|
|
Seattle, WA USA
Offline
Brattain Member
Karma: 311
Posts: 35483
Seattle, WA USA
|
 |
« Reply #4 on: August 20, 2011, 10:00:28 pm » |
I want to be able to interface with a camera Some specific camera? then store the data in an EPROM chip somewhere. For what purpose? You'd need to load a different sketch then to read the data back out of EEPROM (and you'd need a big EEPROM).
|
|
|
|
|
Logged
|
|
|
|
|
Southern California
Offline
Sr. Member
Karma: 5
Posts: 466
I like blinky lights
|
 |
« Reply #5 on: August 21, 2011, 12:41:11 am » |
Do you need the Arduino to do anything with the camera data, or just store it? If you don't need to do any image manipulation then it will be orders of magnitude less complicated to have an Arduino control an existing camera. You could use something like an 808 camera ( http://chucklohr.com/808/C11/) -- have the Arduino turn power on & off, and take the picture, with a couple of optoisolators. Chris
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 62
|
 |
« Reply #6 on: August 30, 2011, 08:41:08 pm » |
Thank you, all i really need is to be able to take a snap shot using atrigger.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Jr. Member
Karma: 0
Posts: 62
|
 |
« Reply #7 on: August 31, 2011, 06:59:15 am » |
What do you mean fundamental concept?
John
|
|
|
|
|
Logged
|
|
|
|
|
Chester, UK
Offline
Sr. Member
Karma: 2
Posts: 489
Trying to return the love to none logic level MOSFETS
|
 |
« Reply #8 on: August 31, 2011, 07:27:07 am » |
Can we have a sticky topic about cameras?
|
|
|
|
|
Logged
|
If your system involves lethal voltages/life critical/flamable elements - you probably shouldn't need to ask. The Arduino != PC.
|
|
|
|
New Jersey
Offline
Edison Member
Karma: 24
Posts: 2348
|
 |
« Reply #9 on: August 31, 2011, 09:47:59 am » |
Thank you, all i really need is to be able to take a snap shot using atrigger.
So, given that any digital camera will already store the snapshot image to an SD card for you, do you need anything more than having the Arduino tell the camera when to take shots?
|
|
|
|
|
Logged
|
|
|
|
|
|