HomeSort by relevance Sort by last modified time
    Searched defs:ncols (Results 1 - 13 of 13) sorted by null

  /external/opencv3/modules/cudaimgproc/src/
mssegmentation.cpp 199 inline int pix(int y, int x, int ncols)
201 return y * ncols + x;
232 const int ncols = src.cols; local
245 Graph<SegmLinkVal> g(nrows * ncols, 4 * (nrows - 1) * (ncols - 1)
246 + (nrows - 1) + (ncols - 1));
261 for (int x = 0; x < ncols - 1; ++x)
289 g.addEdge(pix(y, x, ncols), pix(y, x + 1, ncols), SegmLinkVal(dr[0], dsp[0]));
290 g.addEdge(pix(y, x, ncols), pix(y + 1, x, ncols), SegmLinkVal(dr[1], dsp[1]))
    [all...]
  /external/opencv3/modules/videostab/src/
motion_stabilizing.cpp 154 int ncols = 4*N + 6*(N-1) + 6*(N-2) + 6*(N-3); local
161 obj_.assign(ncols, 0);
162 collb_.assign(ncols, -INF);
163 colub_.assign(ncols, INF);
521 A.setDimensions(nrows, ncols);
  /external/opencv3/modules/imgproc/src/
phasecorr.cpp 63 int ncols = cols*cn; local
65 int j1 = ncols - (cols % 2 == 0 && cn == 1);
176 int ncols = cols*cn; local
178 int j1 = ncols - (cols % 2 == 0 && cn == 1);
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 1557 size_t ncols; local
1585 size_t ncols; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrixImpl.java 161 final int nCols = d[0].length;
162 if (nCols == 0) {
166 if (d[r].length != nCols) {
169 nCols, d[r].length);
194 final int nCols = d[0].length;
195 if (nCols == 0) {
199 if (d[row].length != nCols) {
202 nCols, d[row].length);
224 final int nCols = d[0].length;
225 if (nCols == 0)
758 final int ncols = this.getColumnDimension(); local
794 final int ncols = this.getColumnDimension(); local
813 final int ncols = this.getColumnDimension(); local
    [all...]
  /external/llvm/lib/Support/
regcomp.c 1265 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1268 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1282 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1286 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
    [all...]
  /external/opencv3/modules/core/test/
test_math.cpp 219 int ncols = a.cols*a.channels(); local
232 for( j = 0; j < ncols; j++ )
239 for( j = 0; j < ncols; j++ )
248 for( j = 0; j < ncols; j++ )
256 for( j = 0; j < ncols; j++ )
265 for( j = 0; j < ncols; j++ )
273 for( j = 0; j < ncols; j++ )
282 for( j = 0; j < ncols; j++ )
290 for( j = 0; j < ncols; j++ )
299 for( j = 0; j < ncols; j++
    [all...]
  /external/opencv3/modules/video/src/
bgfg_gaussmix2.cpp 555 int ncols = src->cols, nchannels = src->channels(); local
564 src->row(y).convertTo(Mat(1, ncols, CV_32FC(nchannels), (void*)data), CV_32F);
568 float* mean = mean0 + ncols*nmixtures*nchannels*y;
569 GMM* gmm = gmm0 + ncols*nmixtures*y;
570 uchar* modesUsed = modesUsed0 + ncols*y;
573 for( int x = 0; x < ncols; x++, data += nchannels, gmm += nmixtures, mean += nmixtures*nchannels )
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 1219 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1222 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1236 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1240 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
    [all...]
  /system/bt/stack/smp/
smp_keys.c 96 int ncols = 32; /* num entries in one line */ local
100 nrows = len % ncols ? len / ncols + 1: len / ncols;
103 for (int col = 0, x = 0; (ind < len) && (col < ncols); col++, ind++)
107 SMP_TRACE_WARNING("[%03d]: %s", row * ncols, p_buf);
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_text.cpp 394 int ncols = pGlyph->GetWidth(); local
397 if (!bitmap.CompositeMask(left, top, ncols, nrows, pGlyph, fill_color, 0,
406 ncols /= 3;
414 int end_col = left + ncols;
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
dwp.cc 1159 unsigned int ncols = local
1301 unsigned int ncols = local
1978 unsigned int ncols = 0; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
dwarf.c 5460 int ncols; member in struct:Frame_Chunk
6938 unsigned int ncols = 0; local
    [all...]

Completed in 383 milliseconds