[artoolkit-commits] artoolkit/examples/simpleLite simpleLite.c,1.5,1.6
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Philip L. <phi...@us...> - 2005-07-28 20:30:22
|
Update of /cvsroot/artoolkit/artoolkit/examples/simpleLite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24840 Modified Files: simpleLite.c Log Message: Adjust Windows vconf. Index: simpleLite.c =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/examples/simpleLite/simpleLite.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** simpleLite.c 27 Jul 2005 00:29:48 -0000 1.5 --- simpleLite.c 28 Jul 2005 20:30:13 -0000 1.6 *************** *** 161,165 **** // Find the size of the window. if (arVideoInqSize(&xsize, &ysize) < 0) return (FALSE); ! fprintf(stderr, "demoARSetupCamera(): Camera image size (x,y) = (%d,%d)\n", xsize, ysize); // Load the camera parameters, resize for the window and init. --- 161,165 ---- // Find the size of the window. if (arVideoInqSize(&xsize, &ysize) < 0) return (FALSE); ! fprintf(stdout, "Camera image size (x,y) = (%d,%d)\n", xsize, ysize); // Load the camera parameters, resize for the window and init. *************** *** 170,174 **** arParamChangeSize(&wparam, xsize, ysize, &gARTCparam); arInitCparam(&gARTCparam); ! fprintf(stderr, "*** Camera Parameter ***\n"); arParamDisp(&gARTCparam); --- 170,174 ---- arParamChangeSize(&wparam, xsize, ysize, &gARTCparam); arInitCparam(&gARTCparam); ! fprintf(stdout, "*** Camera Parameter ***\n"); arParamDisp(&gARTCparam); *************** *** 420,424 **** char *vconf = // Camera configuration. #if defined(_WIN32) ! "WDM_camera_flipV.xml"; #elif defined(__APPLE__) ""; --- 420,424 ---- char *vconf = // Camera configuration. #if defined(_WIN32) ! "Data\\WDM_camera_flipV.xml"; #elif defined(__APPLE__) ""; |