Home
last modified time | relevance | path

Searched refs:d_x (Results 1 – 11 of 11) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/cuda/
Ddebayer.cu212 const int d_x = (blockIdx.x * blockDim.x + threadIdx.x) << 2; in Bayer2BGR_8u() local
215 dst(d_y, d_x) = toDst<D>(bayer.res0); in Bayer2BGR_8u()
216 if (d_x + 1 < src.cols) in Bayer2BGR_8u()
217 dst(d_y, d_x + 1) = toDst<D>(bayer.res1); in Bayer2BGR_8u()
218 if (d_x + 2 < src.cols) in Bayer2BGR_8u()
219 dst(d_y, d_x + 2) = toDst<D>(bayer.res2); in Bayer2BGR_8u()
220 if (d_x + 3 < src.cols) in Bayer2BGR_8u()
221 dst(d_y, d_x + 3) = toDst<D>(bayer.res3); in Bayer2BGR_8u()
334 const int d_x = (blockIdx.x * blockDim.x + threadIdx.x) << 1; in Bayer2BGR_16u() local
337 dst(d_y, d_x) = toDst<D>(bayer.res0); in Bayer2BGR_16u()
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/
Den-US_aut_wpho2.utf16 'u:' 'U' 'i:' 'I' 'e' 'V' 'q' '@' 'd_x' 'w' 'l' 'r' 'h' 'x' 'j'
26 :CLASS 4 :IS '?_t' '4' 'W' 'd_x' 'w' 'l' 'r' 'h' 'x' 'j' 'Z' 'S' 'z' 's' 'D' 'T' '…
Den-US_lh0_aut_spho2.utf18 'i:' 'I' 'e'/'E' 'V' 'q' '@' '@'/'@_r' 'd_x'/'4' 'w' 'l' 'r' 'h' 'x' 'j' 'Z'
26 :CLASS 2 :IS '#' '&' '?_t' '4' 'd_x'/'4' 'w' 'l' 'h' 'x' 'j' 'Z' 'S' 'z' 's' 'T' 'v…
Den-US_lh0_aut_spho4.utf16 'l' 'w' 'd_x' '@' 'q' 'V' 'e' 'I' 'i:' 'U' 'u:' 'O:' 'a_I' 'a_U' 'e_I'
34 :CLASS 10 :IS 'p_h' 't_h' 'j' 'd_x' 'e' 'O:' 'e_I' 'e_@' 'I_@' 'U_@' '3' 'A:' '=l' '=…
Den-US_lh0_aut_spho5.utf15 'j' 'x' 'h' 'r' 'l' 'w' 'd_x' '@' 'q' 'V' 'e' 'I' 'i:' 'U' 'u:'
33 :CLASS 8 :IS 'd_x' 'V' 'e' 'U' 'u:' 'O:' 'a_I' 'a_U' 'e_I' 'e_@' 'I_@' 'U_@' 'O_I' '3…
Den-US_aut_spho1.utf18 'I' 'e' 'V' 'q' '@' 'd_x' 'w' 'l' 'r' 'h' 'x' 'j' 'Z' 'S' 'z'
39 :CLASS 14 :IS '?_t' '4' 'd_x' 'N' 'm'
Den-US_aut_wpho1.utf15 'f' 'v' 'T' 'D' 's' 'z' 'S' 'Z' 'j' 'x' 'h' 'r' 'l' 'w' 'd_x'
24 :CLASS 2 :IS 't' 'd' 't_h' 'd_x'
Den-US_lh0_aut_spho3.utf15 'f' 'v' 'T' 'D' 's' 'z' 'S' 'Z' 'j' 'x' 'h' 'r' 'l' 'w' 'd_x'
28 :CLASS 4 :IS 'p_h' 't_h' 'k_h' 'd_x' 'e' 'O:' 'e_I' 'e_@' 'I_@' 'U_@' '3' 'A:' '=l' '…
Den-US_phones.utf101 :SYM "d_x" :PROP mapval = 100
/external/opencv3/doc/py_tutorials/py_feature2d/py_surf_intro/
Dpy_surf_intro.markdown45 \f$v=( \sum{d_x}, \sum{d_y}, \sum{|d_x|}, \sum{|d_y|})\f$. This when represented as a vector gives …
50 \f$d_x\f$ and \f$|d_x|\f$ are computed separately for \f$d_y < 0\f$ and \f$d_y \geq 0\f$. Similarly…
51 \f$d_y\f$ and \f$|d_y|\f$ are split up according to the sign of \f$d_x\f$ , thereby doubling the nu…
/external/opencv3/samples/gpu/performance/
Dtests.cpp440 cuda::GpuMat d_x, d_y, d_mag; in TEST() local
455 d_x.upload(x); in TEST()
458 cuda::magnitude(d_x, d_y, d_mag); in TEST()
461 cuda::magnitude(d_x, d_y, d_mag); in TEST()