Lines Matching refs:idx
1361 for (unsigned long idx = 0 ; idx<pixelCount ; idx++)
1362 labelField[idx] = -1;
1476 for (unsigned long idx = 0 ; idx<pixelCount ; idx++)
1477 labelField[idx] = -1;
1561 int idx=(y*xres)+x;
1562 if (cm[idx+1]>cm[idx])
1563 cm[idx]=cm[idx+1];
1571 int idx=(y*xres)+x;
1572 if (cm[idx-1]>cm[idx])
1573 cm[idx]=cm[idx-1];
1581 int idx=(y*xres)+x;
1582 if (cm[((y+1)*xres)+x] > cm[idx])
1583 cm[idx]=cm[((y+1)*xres)+x];
1591 int idx=(y*xres)+x;
1592 if (cm[((y-1)*xres)+x] > cm[idx])
1593 cm[idx]=cm[((y-1)*xres)+x];
1607 int idx=(y*xres)+x;
1608 if (cm[idx+1] < cm[idx])
1609 cm[idx]=cm[idx+1];
1616 int idx=(y*xres)+x;
1617 if (cm[idx-1] < cm[idx])
1618 cm[idx]=cm[idx-1];
1625 int idx=(y*xres)+x;
1626 if (cm[((y+1)*xres)+x] < cm[idx])
1627 cm[idx]=cm[((y+1)*xres)+x];
1634 int idx=(y*xres)+x;
1635 if (cm[((y-1)*xres)+x] < cm[idx])
1636 cm[idx]=cm[((y-1)*xres)+x];
1684 int idx=(y*xres)+x;
1685 cm[idx]=f1*cm[idx]+f2*cm[idx+1]+f3*cm[idx+2];
1692 int idx=(y*xres)+x;
1693 cm[idx]=f3*cm[idx-2]+f2*cm[idx-1]+f1*cm[idx];
1700 int idx=(y*xres)+x;
1701 cm[idx]=f1*cm[idx]+f2*cm[((y+1)*xres)+x]+f3*cm[((y+2)*xres)+x];
1708 int idx=(y*xres)+x;
1709 cm[idx]=f3*cm[((y-2)*xres)+x]+f2*cm[((y-1)*xres)+x]+f1*cm[idx];