Home | History | Annotate | Download | only in cuda

Lines Matching refs:pixel

1140     //create stages subdivision for pixel-parallel processing
1206 // 1. Run the first pixel-input pixel-parallel classifier for few stages
1264 // 2. Run pixel-parallel stages
1458 __device__ __host__ NcvRect32u pixelToRect(Ncv32u pixel, Ncv32u width, Ncv32u height, Ncv32f scale)
1461 res.x = (Ncv32u)(scale * (pixel & 0xFFFF));
1462 res.y = (Ncv32u)(scale * (pixel >> 16));