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

  /external/opencv3/modules/imgproc/perf/opencl/
perf_color.cpp 103 dcn = get<2>(conversionParams); local
108 OCL_TEST_CYCLE() cv::cvtColor(src, dst, code, dcn);
  /external/mesa3d/src/mesa/math/
m_eval.c 199 GLfloat *dcn = cn + uorder * vorder * dim; local
213 #define DCN(I, J) dcn[(I)*dcuinc+(J)]
233 DCN(1, 0) = CN(1, 0, k) - CN(0, 0, k);
234 DCN(0, 0) = us * CN(0, 0, k) + u * CN(1, 0, k);
238 DCN(1, j + 1) = CN(1, j + 1, k) - CN(0, j + 1, k);
239 DCN(1, j) = vs * DCN(1, j) + v * DCN(1, j + 1);
242 DCN(0, j + 1) = us * CN(0, j + 1, k) + u * CN(1, j + 1, k)
    [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
cuda_perf.hpp 99 int dcn; member in struct:perf::CvtColorInfo
103 explicit CvtColorInfo(int scn_, int dcn_, int code_) : scn(scn_), dcn(dcn_), code(code_) {}
  /external/opencv3/modules/core/test/ocl/
test_channels.cpp 117 int dcn = 0; local
119 dcn += src_roi[i].channels();
122 randomSubMat(dst, dst_roi, roiSize, dstBorder, CV_MAKE_TYPE(depth, dcn), 5, 16);
  /external/opencv3/modules/imgproc/perf/
perf_cvt_color.cpp 123 ChPair(int _scn, int _dcn): scn(_scn), dcn(_dcn) {}
124 int scn, dcn; member in struct:ChPair
256 Mat dst(sz, CV_8UC(ch.dcn));
262 TEST_CYCLE_MULTIRUN(runs) cvtColor(src, dst, mode, ch.dcn);
287 Mat dst(sz, CV_8UC(ch.dcn));
292 TEST_CYCLE() cvtColor(src, dst, mode, ch.dcn);
312 Mat dst(sz, CV_8UC(ch.dcn));
317 TEST_CYCLE_MULTIRUN(runs) cvtColor(src, dst, mode, ch.dcn);
337 Mat dst(sz.height + sz.height / 2, sz.width, CV_8UC(ch.dcn));
343 TEST_CYCLE_MULTIRUN(runs) cvtColor(src, dst, mode, ch.dcn);
    [all...]
  /external/opencv3/modules/core/src/
convert.cpp 1044 int dcn = (int)ksrc.size(); local
    [all...]
matmul.cpp 1946 int depth = src.depth(), scn = src.channels(), dcn = m.rows; local
2124 int depth = src.depth(), scn = src.channels(), dcn = m.rows-1; local
    [all...]
  /external/opencv3/modules/imgproc/src/
accum.cpp 849 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
851 CV_Assert( _src.sameSize(_dst) && dcn == scn );
934 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
936 CV_Assert( _src.sameSize(_dst) && dcn == scn );
1018 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
1106 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
    [all...]
demosaicing.cpp 677 int dcn = dstmat.channels(); local
678 int dcn2 = dcn << 1;
684 T* dst0 = reinterpret_cast<T*>(dstmat.data) + (range.start + 1) * dst_step + dcn + 1;
703 if (dcn == 3)
705 dst[-4] = dst[-3] = dst[-2] = dst[size.width*dcn-1] =
706 dst[size.width*dcn] = dst[size.width*dcn+1] = 0;
710 dst[-5] = dst[-4] = dst[-3] = dst[size.width*dcn-1] =
711 dst[size.width*dcn] = dst[size.width*dcn+1] = 0
885 int dcn = dstmat.channels(); local
1481 int dcn = dst.channels(); local
    [all...]
color.cpp 554 int scn = srccn, dcn = dstcn, bidx = blueIdx; local
555 if( dcn == 3 )
603 int scn = srccn, dcn = dstcn, bidx = blueIdx, i = 0; local
604 if (dcn == 3)
745 int dcn = dstcn, bidx = blueIdx, i = 0; local
749 for ( ; i <= n - 16; i += 16, dst += dcn * 16)
757 if (dcn == 3)
776 for( ; i < n; i++, dst += dcn )
782 if( dcn == 4 )
789 for ( ; i <= n - 16; i += 16, dst += dcn * 16
2441 int dcn = dstcn, bidx = blueIdx; local
2487 int dcn = dstcn, bidx = blueIdx, i = 0; local
2580 int dcn = dstcn, bidx = blueIdx, i = 0; local
2664 int dcn = dstcn, bidx = blueIdx; local
2713 int dcn = dstcn, bidx = blueIdx, i = 0; local
2819 int dcn = dstcn, bidx = blueIdx, i = 0; local
3012 int dcn = dstcn, bidx = blueIdx, i = 0; local
3653 int dcn = dstcn; local
3724 int dcn = dstcn; local
3823 int dcn = dstcn; local
3885 int dcn = dstcn, i = 0; local
4004 int dcn = dstcn, i = 0; local
    [all...]
  /external/opencv3/modules/imgproc/test/
test_cvtyuv.cpp 618 const int dcn = cvt.getDcn(); local
630 Mat dst = Mat(dstSize.height, dstSize.width * dcn, CV_8UC1).reshape(dcn);
631 Mat gold(dstSize, CV_8UC(dcn));
656 const int dcn = cvt.getDcn(); local
673 Mat dst_full(dstSize.height + roi_offset_left + roi_offset_right, dstSize.width + roi_offset_top + roi_offset_bottom, CV_8UC(dcn), Scalar::all(0));
674 Mat gold_full(dst_full.size(), CV_8UC(dcn), Scalar::all(0));
test_color.cpp 1962 int dcn = dst.channels(); local
2056 int dcn = reference.channels(); local
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 662 milliseconds