| View previous topic :: View next topic |
| Author |
Message |
pwillxorz
Joined: 16 Jan 2009 Posts: 2
|
Posted: Fri Jan 16, 2009 3:17 am Post subject: Plausibility of reading camera input and writing on it. |
|
|
I'm currently in a class where I'm studying augmented reality, and we're discussing possible devices to run our final projects on (we're supposed to have an AR experience we've made ourselves at the end of the class).
A lot of the class is going with iphones...... but I don't have the extra money to throw away for an iphone, let alone a dev license. I do however have a psp and access to the "official" webcam type deally. I was wondering if anyone's written drivers for capturing video and displaying it on the screen from the cam in homebrew. I've done a relatively extensive search on the subject, and though this is my first post, I've been on these forums for a few years, off and on... I've never actually programmed something for my psp, and would slowly ramp up to this project, but I'd like to know if some of the code I'd need is already available.
tl;dr version: I need to know of ANY and ALL webcam type drivers available to the homebrew community.
I'm not requesting people to write anything for me, for the record! |
|
| Back to top |
|
 |
hibbyware
Joined: 28 Mar 2007 Posts: 78
|
|
| Back to top |
|
 |
pwillxorz
Joined: 16 Jan 2009 Posts: 2
|
Posted: Fri Jan 16, 2009 4:42 am Post subject: |
|
|
| thank you so much! |
|
| Back to top |
|
 |
pegasus2000
Joined: 12 Jul 2006 Posts: 160
|
Posted: Sun Jan 18, 2009 1:19 am Post subject: Re: Plausibility of reading camera input and writing on it. |
|
|
| pwillxorz wrote: | I'm currently in a class where I'm studying augmented reality, and we're discussing possible devices to run our final projects on (we're supposed to have an AR experience we've made ourselves at the end of the class).
A lot of the class is going with iphones...... but I don't have the extra money to throw away for an iphone, let alone a dev license. I do however have a psp and access to the "official" webcam type deally. I was wondering if anyone's written drivers for capturing video and displaying it on the screen from the cam in homebrew. I've done a relatively extensive search on the subject, and though this is my first post, I've been on these forums for a few years, off and on... I've never actually programmed something for my psp, and would slowly ramp up to this project, but I'd like to know if some of the code I'd need is already available.
tl;dr version: I need to know of ANY and ALL webcam type drivers available to the homebrew community.
I'm not requesting people to write anything for me, for the record! |
You need absolutely Nanodesktop.
We've the tecnology that you're looking for.
Unfortunately, our servers are down until Monday, but you can
obtain infos at www.psp-ita.com |
|
| Back to top |
|
 |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Sun Jan 18, 2009 3:04 pm Post subject: |
|
|
http://dl.qj.net has Nanodesktop.
Whats so great about Nano Desktop? |
|
| Back to top |
|
 |
pegasus2000
Joined: 12 Jul 2006 Posts: 160
|
Posted: Sun Jan 18, 2009 6:37 pm Post subject: |
|
|
| Dariusc123456 wrote: | http://dl.qj.net has Nanodesktop.
Whats so great about Nano Desktop? |
It is the most powerful tecnology for PSP development ever
realized in Italy. It has simple primitive for accessing to GoCam,
to the microphone, for network connection, an own graphical
system, a system for I/O accessing, disk cache manager,
file manager, VOIP, mathematical acceleration.
Other all, it integrates the support for OpenCV and a module for
algorithms of artificial vision. It you want to create applications
as augmented reality, Nanodesktop is the natural way.
This is a video of the new Blind Assistant CFW0005, the most
important application realized using nd.
http://www.psp-ita.com/?module=news&id=24435&view_reply=1 |
|
| Back to top |
|
 |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Mon Jan 19, 2009 12:07 am Post subject: |
|
|
| But whats the differents from the pspsdk and Nano Desktop? Thats whats confusing me. |
|
| Back to top |
|
 |
pegasus2000
Joined: 12 Jul 2006 Posts: 160
|
Posted: Mon Jan 19, 2009 12:40 am Post subject: |
|
|
| Dariusc123456 wrote: | | But whats the differents from the pspsdk and Nano Desktop? Thats whats confusing me. |
Nanodesktop works at high level.
| Code: |
#include <nanodesktop.h>
int ndMain()
{
int UsbHandleCamera;
int Counter;
ndInitSystem ();
UsbHandleCamera = ndHAL_CAM_ActivateCamera(ND_USE_PSP_GOCAM);
if (UsbHandleCamera>=0)
{
for (Counter=0; Counter<1000; Counter++)
{
ndHAL_CAM_GrabNewImage (UsbHandleCamera, ND_CAM_TO_BASESCREEN, 0, 0, RENDER);
}
}
else
{
printf ("GoCam is not connected \n");
ndDelay (2);
}
}
|
This program captures the images from the Sony GoCam and shows it
in the screen. Using PSPSDK you need hundreds of rows to
obtain the same result. |
|
| Back to top |
|
 |
Dariusc123456
Joined: 12 Aug 2008 Posts: 394
|
Posted: Mon Jan 19, 2009 8:42 am Post subject: |
|
|
| I might check it out. |
|
| Back to top |
|
 |
|