OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:INTER_TAB_SIZE
(Results
1 - 10
of
10
) sorted by null
/external/opencv3/modules/imgproc/src/opencl/
remap.cl
71
INTER_TAB_SIZE
= 1 << INTER_BITS,
72
INTER_TAB_SIZE2 =
INTER_TAB_SIZE
*
INTER_TAB_SIZE
296
int dx = (map2Value & (
INTER_TAB_SIZE
- 1)) < (
INTER_TAB_SIZE
>> 1) ? 1 : 0;
297
int dy = (map2Value >> INTER_BITS) < (
INTER_TAB_SIZE
>> 1) ? 1 : 0;
357
WT2 u = (WT2)(map2Value & (
INTER_TAB_SIZE
- 1), map2Value >> INTER_BITS) / (WT2)(
INTER_TAB_SIZE
);
417
int sx = convert_int_sat_rtz(mad(xf,
INTER_TAB_SIZE
, 0.5f)) >> INTER_BITS;
418
int sy = convert_int_sat_rtz(mad(yf,
INTER_TAB_SIZE
, 0.5f)) >> INTER_BITS
[
all
...]
warp_perspective.cl
58
#define
INTER_TAB_SIZE
(1 << INTER_BITS)
59
#define INTER_SCALE 1.f /
INTER_TAB_SIZE
131
W = W != 0.0f ?
INTER_TAB_SIZE
/ W : 0.0f;
136
short ay = (short)(Y & (
INTER_TAB_SIZE
- 1));
137
short ax = (short)(X & (
INTER_TAB_SIZE
- 1));
148
float taby = 1.f/
INTER_TAB_SIZE
*ay;
149
float tabx = 1.f/
INTER_TAB_SIZE
*ax;
193
W = W != 0.0f ?
INTER_TAB_SIZE
/ W : 0.0f;
198
short ay = (short)(Y & (
INTER_TAB_SIZE
-1));
199
short ax = (short)(X & (
INTER_TAB_SIZE
-1))
[
all
...]
warp_affine.cl
58
#define
INTER_TAB_SIZE
(1 << INTER_BITS)
59
#define INTER_SCALE 1.f/
INTER_TAB_SIZE
155
short ax = convert_short(X0 & (
INTER_TAB_SIZE
-1)), ay = convert_short(Y0 & (
INTER_TAB_SIZE
-1));
174
float taby = 1.f/
INTER_TAB_SIZE
*ay;
175
float tabx = 1.f/
INTER_TAB_SIZE
*ax;
284
int ay = (short)(Y0 & (
INTER_TAB_SIZE
- 1)), ax = (short)(X0 & (
INTER_TAB_SIZE
- 1));
/external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp
908
inter_func((yMy[dx] & (
INTER_TAB_SIZE
- 1)) / static_cast<float>(
INTER_TAB_SIZE
), w);
909
inter_func(((yMy[dx] >> INTER_BITS) & (
INTER_TAB_SIZE
- 1)) / static_cast<float>(
INTER_TAB_SIZE
), w + ksize);
[
all
...]
/external/opencv3/modules/imgproc/src/
imgwarp.cpp
232
AutoBuffer<float> _tab(8*
INTER_TAB_SIZE
);
234
initInterTab1D(method, _tab,
INTER_TAB_SIZE
);
235
for( i = 0; i <
INTER_TAB_SIZE
; i++ )
236
for( j = 0; j <
INTER_TAB_SIZE
; j++, tab += ksize*ksize, itab += ksize*ksize )
239
NNDeltaTab_i[i*
INTER_TAB_SIZE
+j][0] = j <
INTER_TAB_SIZE
/2;
240
NNDeltaTab_i[i*
INTER_TAB_SIZE
+j][1] = i <
INTER_TAB_SIZE
/2;
[
all
...]
undistort.cpp
149
int iu = saturate_cast<int>(u*
INTER_TAB_SIZE
);
150
int iv = saturate_cast<int>(v*
INTER_TAB_SIZE
);
153
m2[j] = (ushort)((iv & (
INTER_TAB_SIZE
-1))*
INTER_TAB_SIZE
+ (iu & (
INTER_TAB_SIZE
-1)));
/external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp
277
INTER_TAB_SIZE
= 1 << INTER_BITS,
278
INTER_TAB_SIZE2 =
INTER_TAB_SIZE
*
INTER_TAB_SIZE
[
all
...]
/external/opencv3/modules/calib3d/src/
fisheye.cpp
475
int iu = cv::saturate_cast<int>(u*cv::
INTER_TAB_SIZE
);
476
int iv = cv::saturate_cast<int>(v*cv::
INTER_TAB_SIZE
);
479
m2[j] = (ushort)((iv & (cv::
INTER_TAB_SIZE
-1))*cv::
INTER_TAB_SIZE
+ (iu & (cv::
INTER_TAB_SIZE
-1)));
[
all
...]
/external/opencv3/modules/java/src/
imgproc+Imgproc.java
137
INTER_TAB_SIZE
= 1 << INTER_BITS,
138
INTER_TAB_SIZE2 =
INTER_TAB_SIZE
*
INTER_TAB_SIZE
,
[
all
...]
/cts/apps/CtsVerifier/libs/
opencv3-android.jar
Completed in 534 milliseconds