[artoolkit-commits] artoolkit/examples/simpleLite simpleLite.c, 1.17, 1.18
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Philip L. <phi...@us...> - 2006-09-18 23:39:06
|
Update of /cvsroot/artoolkit/artoolkit/examples/simpleLite In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv12440 Modified Files: simpleLite.c Log Message: Default vconf is now consistent across all examples except twoView. Index: simpleLite.c =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/examples/simpleLite/simpleLite.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** simpleLite.c 18 Sep 2006 04:48:33 -0000 1.17 --- simpleLite.c 18 Sep 2006 23:39:03 -0000 1.18 *************** *** 416,432 **** // Camera configuration. // ! char *vconf = ! #if defined(_WIN32) ! "Data\\WDM_camera_flipV.xml"; ! #elif defined(__APPLE__) ! ""; ! #elif defined(__linux) ! # if defined(AR_INPUT_GSTREAMER) ! ""; ! # else ! "-dev=/dev/video0 -channel=0 -palette=YUV420P -width=320 -height=240"; ! # endif #else ! ""; #endif const char *patt_name = "Data/patt.hiro"; --- 416,423 ---- // Camera configuration. // ! #ifdef _WIN32 ! char *vconf = "Data\\WDM_camera_flipV.xml"; #else ! char *vconf = ""; #endif const char *patt_name = "Data/patt.hiro"; |