HomeSort by relevance Sort by last modified time
    Searched refs:ksize (Results 1 - 15 of 15) sorted by null

  /external/eigen/unsupported/test/
cxx11_tensor_image_patch.cpp 189 int ksize = 2; // Corresponds to the Rows and Cols for tensor.extract_image_patches<>. local
197 Tensor<float, 5> result = tensor.extract_image_patches(ksize, ksize, stride, stride, 1, 1, PADDING_VALID);
200 VERIFY_IS_EQUAL(result.dimension(1), ksize); // kernel rows
201 VERIFY_IS_EQUAL(result.dimension(2), ksize); // kernel cols
212 Tensor<float, 5, RowMajor> result_row_major = tensor_row_major.extract_image_patches(ksize, ksize, stride, stride, 1, 1, PADDING_VALID);
223 for (int i = 0; (i+stride+ksize-1) < input_rows; i += stride) { // input rows
224 for (int j = 0; (j+stride+ksize-1) < input_cols; j += stride) { // input cols
226 for (int r = 0; r < ksize; ++r) { // patch row
265 int ksize = 3; \/\/ Corresponds to the Rows and Cols for tensor.extract_image_patches<>. local
338 int ksize = 2; \/\/ Corresponds to the Rows and Cols for tensor.extract_image_patches<>. local
    [all...]
  /external/opencv/cv/src/
cvfilter.cpp 108 trow_sz = cvAlign( (max_width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN );
113 width += ksize.width - 1;
137 _ksize.width == ksize.width && _ksize.height == ksize.height &&
145 ksize = _ksize;
149 anchor.x = ksize.width / 2;
151 anchor.y = ksize.height / 2;
153 max_ky = MAX( anchor.y, ksize.height - anchor.y - 1 );
157 if( ksize.width <= 0 || ksize.height <= 0 |
    [all...]
cvsmooth.cpp 131 scale = normalized ? 1./(ksize.width*ksize.height) : 1;
181 s = sum = buf_end + cvAlign((width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN);
194 int ksize = state->get_kernel_size().width; local
199 width = (width - 1)*cn; ksize *= cn;
204 for( i = 0; i < ksize; i += cn )
209 s += src[i+ksize] - src[i];
220 int ksize = state->get_kernel_size().width; local
225 width = (width - 1)*cn; ksize *= cn;
230 for( i = 0; i < ksize; i += cn
248 int ksize = state->get_kernel_size().height; local
308 int ksize = state->get_kernel_size().height; local
385 int ksize = state->get_kernel_size().height; local
443 int ksize = state->get_kernel_size().height; local
1479 CvSize ksize = { param1, param2 }; local
    [all...]
_cvimgproc.h 83 CvMat* icvIPPFilterInit( const CvMat* src, int stripe_size, CvSize ksize );
86 CvSize ksize, CvPoint anchor );
cvderiv.cpp 388 trow_sz = cvAlign( (max_width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN );
494 int ksize = _kx->cols + _kx->rows - 1; \
497 int ksize2 = ksize/2, ksize2n = ksize2*cn; \
512 else if( ksize == 3 ) \
519 else if( ksize == 5 ) \
552 int ksize = _kx->cols + _kx->rows - 1, ksize2 = ksize/2; local
557 int shift = ksize - 1, delta = (1 << shift) >> 1;
573 if( ksize == 3 )
607 else if( ksize == 5
694 int ksize = _kx->cols + _kx->rows - 1, ksize2 = ksize\/2; local
    [all...]
cvmorph.cpp 235 ksize.width*ksize.height*(2*sizeof(int) + sizeof(uchar*))));
269 for( i = 0; i < ksize.height; i++ )
270 for( j = 0; j < ksize.width; j++ )
468 int ksize = state->get_kernel_size().width; \
473 width *= cn; ksize *= cn; \
475 if( ksize == cn ) \
488 for( j = cn*2; j < ksize; j += cn ) \
502 for( j = cn; j < ksize; j += cn ) \
527 int ksize = state->get_kernel_size().height;
    [all...]
_cvipp.h 357 CvSize roi, CvSize ksize, CvPoint anchor ))
367 CvSize roi, CvSize ksize, CvPoint anchor ))
479 const float* kernel, ksizetype ksize, anchortype anchor ))
    [all...]
  /external/eigen/bench/
benchmark-blocking-sizes.cpp 572 for (size_t ksize = minsize; ksize <= maxsize; ksize *= 2) {
575 for (size_t kblock = minsize; kblock <= ksize; kblock *= 2) {
578 benchmarks.emplace_back(ksize, msize, nsize, kblock, mblock, nblock);
603 for (size_t ksize = minsize; ksize <= maxsize; ksize *= 2) {
606 benchmarks.emplace_back(ksize, msize, nsize);
  /external/icu/icu4c/source/common/
locid.cpp 300 int32_t ksize = 0; local
366 ksize = (int32_t)uprv_strlen(newKeywords);
367 if ( ksize < 0 || ksize > ULOC_STRING_LIMIT ) {
371 size += ksize + 1;
395 if ( ksize != 0)
  /external/opencv/cv/include/
cv.hpp 112 CvSize get_kernel_size() const { return ksize; }
150 CvSize ksize; member in class:CvBaseImageFilter
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 
  /external/valgrind/coregrind/m_demangle/
cplus-dem.c 141 int ksize; member in struct:work_stuff
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
cplus-dem.c 123 int ksize; member in struct:work_stuff
    [all...]
  /system/core/fastboot/
fastboot.cpp 429 int64_t ksize; local
430 void* kdata = load_file(kernel, &ksize);
445 *sz = ksize;
471 void* bdata = mkbootimg(kdata, ksize, kernel_offset,
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 68 #define SET_BPOS_AND_KSIZE(x,bpos,ksize) \
69 NJ_INT16_WRITE(((x)+3), ((NJ_UINT16)((bpos) << 7) | ((ksize) & 0x7F)))
    [all...]

Completed in 615 milliseconds