From: Ramachandran M <ra...@ta...> - 2007-05-03 06:57:01
|
Thanks I downloaded .dsp and .dsw from the cvs source .Now i am able to compile it. Is it portable to linux also?if it is portable,which driver is used? Ram ---- Original message ---- Date: Wed, 02 May 2007 17:17:27 +0200 From: Frank Fesevur <ff...@us...> Subject: Re: [wxCode-users] Compiling wxvidcap To: wxc...@li... >At 2-5-2007 8:40, Ramachandran M wrote: >> I have downloaded the wxcode.zip file.I want to compile wxvidcap >> component.But it has only .dsp file. >> How to compile a wxvidcap in wxmsw2.6.4 ? >> Is there any procedure to compile the wxcode componenets in wxmsw? > >The .dsp is a sub-file for a MSVC6 project (similar to a .vcproj file). >You can add it to a project. > >With MSVC it should compile out of the box. With gcc (both MinGW and >cygwin) it does not work, because of problems with the header vfw.h that >comes with these gcc versions. Haven't tried any other compiler or OS yet. > >Regards, >Frank > > >------------------------------------------------------------------------- >This SF.net email is sponsored by DB2 Express >Download DB2 Express C - the FREE version of DB2 express and take >control of your XML. No limits. Just data. Click to get it now. >http://sourceforge.net/powerbar/db2/ >_______________________________________________ >wxCode-users mailing list >wxC...@li... >https://lists.sourceforge.net/lists/listinfo/wxcode-users |
From: John L. <jla...@gm...> - 2007-05-03 13:31:46
|
On 5/3/07, Ramachandran M <ra...@ta...> wrote: > > I downloaded .dsp and .dsw from the cvs source .Now i am able to compile it. Good. > Is it portable to linux also?if it is portable,which driver is used? No, there is code for V4L2, but it is not nearly complete. It kinda' works for one particular usb camera I have, but for any other camera conversion routines must be written to convert from their format to 32bit RGB for wxImages. I do not plan to spend any time on it in the near future. Regards, John Labenski |
From: Ramachandran M <ra...@ta...> - 2007-05-08 05:33:50
|
Hi Conversion routine can be easily done,i think.I want to know,will it detect all camera in Linux?. Can I read data from all types of camera? If i am able to read the data,then i can write the convertion routine in the application level,Right. Wxvidcap is a great work..... Thanks a lot Ram -----Original Message----- From: wxc...@li... [mailto:wxc...@li...]On Behalf Of John Labenski Sent: Thursday, May 03, 2007 7:02 PM To: wxc...@li... Subject: Re: [wxCode-users] Compiling wxvidcap On 5/3/07, Ramachandran M <ra...@ta...> wrote: > > I downloaded .dsp and .dsw from the cvs source .Now i am able to compile it. Good. > Is it portable to linux also?if it is portable,which driver is used? No, there is code for V4L2, but it is not nearly complete. It kinda' works for one particular usb camera I have, but for any other camera conversion routines must be written to convert from their format to 32bit RGB for wxImages. I do not plan to spend any time on it in the near future. Regards, John Labenski ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ wxCode-users mailing list wxC...@li... https://lists.sourceforge.net/lists/listinfo/wxcode-users |
From: Frank F. <ff...@us...> - 2007-05-03 16:48:27
|
At 3-5-2007 15:31, John Labenski wrote: >> Is it portable to linux also?if it is portable,which driver is used? > > No, there is code for V4L2, but it is not nearly complete. It kinda' > works for one particular usb camera I have, but for any other camera > conversion routines must be written to convert from their format to > 32bit RGB for wxImages. I do not plan to spend any time on it in the > near future. For Dorgem3 (that completely relies on wxVidCap) I have an alpha version for Win32 that does some basic jobs. I will try to compile it on my Ubuntu Linux and see how far I come with wxVidCap and my Q-Tec camera. Linux is quite new to me, so it will take some time to get it compiled. And I use the wxImage functions so there still is work to be done. Regards, Frank |
From: John L. <jla...@gm...> - 2007-05-03 17:26:44
|
On 5/3/07, Frank Fesevur <ff...@us...> wrote: > At 3-5-2007 15:31, John Labenski wrote: > >> Is it portable to linux also?if it is portable,which driver is used? > > > > No, there is code for V4L2, but it is not nearly complete. It kinda' > > works for one particular usb camera I have, but for any other camera > > conversion routines must be written to convert from their format to > > 32bit RGB for wxImages. I do not plan to spend any time on it in the > > near future. > > For Dorgem3 (that completely relies on wxVidCap) I have an alpha version > for Win32 that does some basic jobs. I will try to compile it on my > Ubuntu Linux and see how far I come with wxVidCap and my Q-Tec camera. > Linux is quite new to me, so it will take some time to get it compiled. > And I use the wxImage functions so there still is work to be done. I should mention that you'll probably notice that there is a base class that tries to encapsulate the common functions of VFW and V4L2. Since I never really got V4L2 ironed out some things might not make sense since I'm sure that some reorganization is necessary. Regards, John Labenski |