[artoolkit-commits] artoolkit/lib/SRC/AR arDetectMarker.c, 1.1.1.1, 1.2
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Philip L. <phi...@us...> - 2006-06-08 22:04:30
|
Update of /cvsroot/artoolkit/artoolkit/lib/SRC/AR In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31723 Modified Files: arDetectMarker.c Log Message: Comments. Index: arDetectMarker.c =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/lib/SRC/AR/arDetectMarker.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** arDetectMarker.c 4 Nov 2004 08:51:16 -0000 1.1.1.1 --- arDetectMarker.c 8 Jun 2006 22:04:22 -0000 1.2 *************** *** 19,22 **** --- 19,23 ---- int i, j, k, x, y; + // Match supplied info against previously recognised marker. for( i = 0; i < wmarker_num; i++ ) { if( marker_info->area == marker_info2[i].area *************** *** 37,40 **** --- 38,42 ---- if( fp == NULL ) return -1; + // Write out in order AR_PATT_SIZE_X columns x AR_PATT_SIZE_Y rows x 3 colours x 4 orientations. for( i = 0; i < 4; i++ ) { for( j = 0; j < 3; j++ ) { |