Camera Interface?
Circuitbuilder9
Posts: 85
Hey, people.
I was wondering if you guys knew any good camera interface on the propeller chip, whether it be an OBX or completely new code, is it possible that i could know how to do that? Stuff like capturing video from a camera or other type of video hardware, such as Hanno's video hardware, is hard to find. Creating code for video interface and facial recognition is very hard to find. I cannot find any examples in archive files on Semiconductor. Plz help! Thnx.
I was wondering if you guys knew any good camera interface on the propeller chip, whether it be an OBX or completely new code, is it possible that i could know how to do that? Stuff like capturing video from a camera or other type of video hardware, such as Hanno's video hardware, is hard to find. Creating code for video interface and facial recognition is very hard to find. I cannot find any examples in archive files on Semiconductor. Plz help! Thnx.
Comments
You ought to check out Ragtop's camera project too.
I think there are a few approaches:
1. Phil Pilgrim's analog capture from NTSC camera. This is probably the lowest cost option.
2. USB camera interface using VNC2. Possible on paper, haven't seen it demonstrated. Also fairly low cost.
3. Digital stream capture from cmos sensor. I think Parallax's laser range finder does this. Maybe that code could be used to capture an image.
That would also be fairly low cost.
4. Use a serial interface camera. I think there's one around again for ~$50 or so.
5. Use a Solomon SSD1928 graphics chip to capture digital video. This is my plan
The range finder just ignores most of the color image the camera outputs. It shouldn't be hard to get a full color image from the sensor, the problem is what to do with all that data. I've worked on and off on using stacks of SRAM to store and image. I haven't gotten very far with the project.
I look forward to seeing what you do.
I also like Hanno's method of using an ADC08100 chip to capture NTSC video. I think the 8-bit bus of the ACD08100 lets the Prop capture a higher resolution image than Phil's capture methods. Hanno's method only capture's B&W images and the ACD08100 chip isn't cheap (~$14 IIRC). You can also use the ACD08100 for other high speed ADC uses. I think one reason I like it is because I got it to work. I also displayed a low res capture on my 12 x 10 LED array which I thought was pretty cool.
Hanno
If I find time, I'm going to connect this to the VNC2 and see if I can get anywhere that way...