HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1476 - 1500 of 4549) sorted by null

<<51525354555657585960>>

  /external/opencv3/3rdparty/zlib/
inflate.c 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */ local
636 out = left;
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
filters.hpp 38 // or tort (including negligence or otherwise) arising in any way out of
94 work_type out = VecTraits<work_type>::all(0); local
102 out = out + src_reg * ((x2 - x) * (y2 - y));
105 out = out + src_reg * ((x - x1) * (y2 - y));
108 out = out + src_reg * ((x2 - x) * (y - y1));
111 out = out + src_reg * ((x - x1) * (y - y1))
201 work_type out = VecTraits<work_type>::all(0.f); local
241 work_type out = VecTraits<work_type>::all(0.f); local
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
interpolation.hpp 39 // or tort (including negligence or otherwise) arising in any way out of
111 work_type out = VecTraits<work_type>::all(0); local
119 out = out + src_reg * static_cast<work_elem_type>((x2 - x) * (y2 - y));
122 out = out + src_reg * static_cast<work_elem_type>((x - x1) * (y2 - y));
125 out = out + src_reg * static_cast<work_elem_type>((x2 - x) * (y - y1));
128 out = out + src_reg * static_cast<work_elem_type>((x - x1) * (y - y1))
255 work_type out = VecTraits<work_type>::all(0); local
321 work_type out = VecTraits<work_type>::all(0); local
    [all...]
  /external/opencv3/modules/imgcodecs/src/
grfmt_exr.cpp 38 // or tort (including negligence or otherwise) arising in any way out of
317 uchar *out = data; local
332 RGBToGray( (float *)buffer, (float *)out );
351 out[x] = cv::saturate_cast<uchar>(fi[x]*5);
359 out[x] = cv::saturate_cast<uchar>(ui[x]);
364 out += step;
515 void ExrDecoder::RGBToGray( float *in, float *out )
522 out[i] = in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0];
526 uchar *o = (uchar *)out;
540 ((int *)out)[i] = int(si[n] * m_chroma.blue[0] + si[n + 1] * m_chroma.green[0] + si[n + 2] * m_chroma.red[0])
    [all...]
  /external/opencv3/modules/photo/src/
seamless_cloning_impl.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
456 Mat out = Mat(mask.size(),CV_8UC1); local
457 Canny(mask,out,low_threshold,high_threshold,kernel_size);
461 Mat zerosMask = (out != 255);