Lines Matching refs:col
115 int row, col; // row and column of this quad
153 static int icvTrimCol(CvCBQuad **quads, int count, int col, int dir);
574 start->col = 0;
584 int col = q->col;
586 col_hist[col+HSIZE]++;
592 if (col > col_max) col_max = col;
593 if (col < col_min) col_min = col;
598 switch(i) // adjust col, row for this quad
601 row--; col--; break;
603 col += 2; break;
607 col -= 2; break;
613 PRINTF("col: %d row: %d\n", col, row);
617 neighbor->col = col;
657 PRINTF("Trimming left col\n");
662 PRINTF("Trimming right col\n");
692 int col = quads[i]->col;
696 switch(j) // adjust col, row for this quad
699 row--; col--; break;
701 col += 2; break;
705 col -= 2; break;
709 col <= col_max && col >= col_min &&
713 PRINTF("Adding inner: col: %d row: %d\n", col, row);
718 neighbor->col = col;
849 icvTrimCol(CvCBQuad **quads, int count, int col, int dir)
857 PRINTF("index: %d cur: %d\n", col, quads[i]->col);
859 if (quads[i]->ordered && quads[i]->col == col)