ARToolKit | Mailing List Archive |
![]() |
From: | =?iso-8859-1?Q?Kai_Schr=F6der?= <kai.schroder@h ......> | Received: | Feb 18, 2003 |
To | artoolkit@h .................. | ||
Subject: | Capturing files instead of pictures | ||
Hi all! Instead of using a capturing card at the server, I was thinking of taking the picture remotely and transfer it to the server for processing. Since I dont have a capturing card installed at the server, I'm not able to test the examples that are included when installed, so I'm in need of some help. *What type of encoding of the picture are allowed? *Any example of function calls for using files instead of capturing card? *Has anyone done this before and might be willing to share some thoughts? All ideas are welcome! Best to you all Kai |
From: | =?iso-8859-1?Q?Kai_Schr=F6der?= <kai.schroder@h ......> | Received: | Feb 18, 2003 |
To | artoolkit@h .................. | ||
Subject: | Capturing files instead of pictures | ||
Hi all! Instead of using a capturing card at the server, I was thinking of taking the picture remotely and transfer it to the server for processing. Since I dont have a capturing card installed at the server, I'm not able to test the examples that are included when installed, so I'm in need of some help. *What type of encoding of the picture are allowed? *Any example of function calls for using files instead of capturing card? *Has anyone done this before and might be willing to share some thoughts? All ideas are welcome! Best to you all Kai |
From: | "Kai" <kai.schroder@h ......> | Received: | Feb 18, 2003 |
To | artoolkit@h .................. | ||
Subject: | Capturing files instead of pictures | ||
/*Second time mailed, if seen before, just ignore*/ Hi all! Instead of using a capturing card at the server, I was thinking of taking the picture remotely and transfer it to the server for processing. Since I dont have a capturing card installed at the server, I'm not able to test the examples that are included when installed, so I'm in need of some help. *What type of encoding of the picture are allowed? *Any example of function calls for using files instead of capturing card? *Has anyone done this before and might be willing to share some thoughts? All ideas are welcome! Best to you all Kai |
From: | "Kai" <kai.schroder@h ......> | Received: | Feb 18, 2003 |
To | artoolkit@h .................. | ||
Subject: | Capturing files instead of pictures | ||
/*Second time mailed, if seen before, just ignore*/ Hi all! Instead of using a capturing card at the server, I was thinking of taking the picture remotely and transfer it to the server for processing. Since I dont have a capturing card installed at the server, I'm not able to test the examples that are included when installed, so I'm in need of some help. *What type of encoding of the picture are allowed? *Any example of function calls for using files instead of capturing card? *Has anyone done this before and might be willing to share some thoughts? All ideas are welcome! Best to you all Kai |
From: | =?iso-8859-1?Q?Murad_Samad_S=E6ter?= <sater@s ...........> | Received: | Feb 18, 2003 |
To | artoolkit@h .................. | ||
Subject: | Re: Capturing files instead of pictures | ||
On Tue, 18 Feb 2003, Kai wrote: > Instead of using a capturing card at the server, I was thinking of taking > the picture remotely and transfer it to the server for processing. Since I Why would you want to do that. The frame-rate would be horrible I think. Another solution you should consider is using OpenTracker. With OpenTracker the images are processed by the machine grabbing the images and the calculated coordinates can be multicasted of the network. Murad |
From: | Hirokazu Kato <kato@s ........................> | Received: | Feb 19, 2003 |
To | Kai <kai.schroder@h ......> | ||
Subject: | Re: Capturing files instead of pictures | ||
Hi, >*What type of encoding of the picture are allowed? Raw image data. Pixel format is defined in 'include/AR/config.h'. AR_PIX_FORMAT_ABGR AR_PIX_FORMAT_BGRA AR_PIX_FORMAT_RGBA AR_PIX_FORMAT_BGR AR_PIX_FORMAT_RGB These pixel formats would be available. >*Any example of function calls for using files instead of capturing card? I do not know. If you make fonctions below, it would be perfect. int arVideoOpen( char *config ); Open a video device. --> Open a image file or a network port. int arVideoClose( void ); Close everything on video handling. int arVideoDispOption( void ); not needed. Null function is OK. int arVideoInqSize( int *x, int *y ); return the image size. ARUint8 *arVideoGetImage( void ); return the pointer for captured image. int arVideoCapStart( void ); Activate image capturing. So not needed for some setups. int arVideoCapStop( void ); Deactivate image capturing. So not needed for some setups. int arVideoCapNext( void ); Getting ready for capturing a next image. Not needed for almost setups. -- ------------------------------------------------------------------ Hirokazu Kato Faculty of Information Sciences Hiroshima City University Phone: +81-82-830-1705 Email: kato@s ........................ Fax: +81-82-830-1435 URL: http://www.sys.im.hiroshima-cu.ac.jp/people/kato/ |