HomeSort by relevance Sort by last modified time
    Searched refs:interpolation (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/
testharness-tests.js 20 'blink/interpolation/background-color-interpolation.html',
21 'blink/interpolation/background-position-interpolation.html',
22 'blink/interpolation/background-position-origin-interpolation.html',
23 'blink/interpolation/background-size-interpolation.html',
24 'blink/interpolation/border-color-interpolation.html'
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.11/
plexus-interpolation-1.11.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-interpolation-1.19.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interpolation/1.13/
plexus-interpolation-1.13.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interpolation/1.14/
plexus-interpolation-1.14.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.14/
plexus-interpolation-1.14.jar 
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
effect.js 23 interpolations.filter(function(interpolation) {
24 return (fraction <= 0 && interpolation.startTime == 0) ||
25 (fraction >= 1 && interpolation.endTime == 1) ||
26 (fraction >= interpolation.startTime && fraction <= interpolation.endTime);
27 }).forEach(function(interpolation) {
28 var offsetFraction = fraction - interpolation.startTime;
29 var localDuration = interpolation.endTime - interpolation.startTime;
30 var scaledLocalTime = localDuration == 0 ? 0 : interpolation.easing(offsetFraction / localDuration)
    [all...]
  /external/opencv3/modules/cudawarping/src/
resize.cpp 54 void resize(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream);
57 void cv::cuda::resize(InputArray _src, OutputArray _dst, Size dsize, double fx, double fy, int interpolation, Stream& stream)
61 typedef void (*func_t)(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream);
73 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC || interpolation == INTER_AREA );
105 func(src, wholeSrc, ofs.y, ofs.x, dst, static_cast<float>(1.0 / fy), static_cast<float>(1.0 / fx), interpolation, StreamAccessor::getStream(stream));
remap.cpp 57 int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
61 void cv::cuda::remap(InputArray _src, OutputArray _dst, InputArray _xmap, InputArray _ymap, int interpolation, int borderMode, Scalar borderValue, Stream& stream)
65 typedef void (*func_t)(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation,
83 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC );
101 dst, interpolation, borderMode, borderValueFloat.val, StreamAccessor::getStream(stream), deviceSupports(FEATURE_SET_COMPUTE_20));
warp.cpp 67 void warpAffine_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation,
73 void warpPerspective_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[3 * 3], PtrStepSzb dst, int interpolation,
144 int interpolation);
151 static void call(const cv::cuda::GpuMat& src, cv::cuda::GpuMat& dst, double coeffs[][3], int interpolation, cudaStream_t stream)
175 coeffs, npp_inter[interpolation]) );
190 const int interpolation = flags & INTER_MAX;
193 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC );
243 bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][src.channels() - 1][interpolation];
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
BivariateRealGridInterpolator.java 17 package org.apache.commons.math.analysis.interpolation;
32 * @param xval All the x-coordinates of the interpolation points, sorted
34 * @param yval All the y-coordinates of the interpolation points, sorted
36 * @param fval The values of the interpolation points on all the grid knots:
40 * interpolation algorithm.
MultivariateRealInterpolator.java 17 package org.apache.commons.math.analysis.interpolation;
33 * @param xval the arguments for the interpolation points.
34 * {@code xval[i][0]} is the first component of interpolation point
36 * until {@code xval[i][d-1]}, the last component of that interpolation
38 * @param yval the values for the interpolation points
41 * interpolation algorithm or some dimension mismatch occurs
TrivariateRealGridInterpolator.java 17 package org.apache.commons.math.analysis.interpolation;
33 * @param xval All the x-coordinates of the interpolation points, sorted
35 * @param yval All the y-coordinates of the interpolation points, sorted
37 * @param zval All the z-coordinates of the interpolation points, sorted
39 * @param fval the values of the interpolation points on all the grid knots:
45 * interpolation algorithm.
UnivariateRealInterpolator.java 17 package org.apache.commons.math.analysis.interpolation;
31 * @param xval the arguments for the interpolation points
32 * @param yval the values for the interpolation points
35 * interpolation algorithm
NevilleInterpolator.java 17 package org.apache.commons.math.analysis.interpolation;
26 * Neville's Algorithm</a> for interpolation of real univariate functions. For
  /external/skia/src/svg/parser/
SkSVGFeColorMatrix.cpp 14 SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_filters),
  /external/opencv3/modules/cudawarping/test/
test_warp_affine.cpp 89 int interpolation = cv::INTER_NEAREST; local
91 int flags = interpolation;
96 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode);
133 void warpAffineGold(const cv::Mat& src, const cv::Mat& M, bool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal)
170 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal);
175 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
183 PARAM_TEST_CASE(WarpAffine, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi)
189 int interpolation; local
199 interpolation = GET_PARAM(4);
211 int flags = interpolation;
242 int interpolation; local
    [all...]
test_warp_perspective.cpp 90 int interpolation = cv::INTER_NEAREST; local
92 int flags = interpolation;
97 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode);
136 void warpPerspectiveGold(const cv::Mat& src, const cv::Mat& M, bool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal)
173 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal);
178 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
186 PARAM_TEST_CASE(WarpPerspective, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi)
192 int interpolation; local
202 interpolation = GET_PARAM(4);
214 int flags = interpolation;
245 int interpolation; local
    [all...]
test_resize.cpp 76 void resizeGold(const cv::Mat& src, cv::Mat& dst, double fx, double fy, int interpolation)
113 funcs[interpolation][src.depth()](src, dst, fx, fy);
120 PARAM_TEST_CASE(Resize, cv::cuda::DeviceInfo, cv::Size, MatType, double, Interpolation, UseRoi)
125 int interpolation; local
135 interpolation = GET_PARAM(4);
147 cv::cuda::resize(loadMat(src, useRoi), dst, cv::Size(), coeff, coeff, interpolation); local
150 resizeGold(src, dst_gold, coeff, coeff, interpolation);
160 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))
170 int interpolation; local
193 cv::cuda::resize(loadMat(src, useRoi), dst, cv::Size(), coeff, coeff, interpolation); local
    [all...]
  /external/opencv3/modules/cudawarping/perf/
perf_warping.cpp 92 DEF_PARAM_TEST(Sz_Depth_Cn_Inter_Border_Mode, cv::Size, MatDepth, MatCn, Interpolation, BorderMode, RemapMode);
98 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
107 const int interpolation = GET_PARAM(3); local
127 TEST_CYCLE() cv::cuda::remap(d_src, dst, d_xmap, d_ymap, interpolation, borderMode);
135 TEST_CYCLE() cv::remap(src, dst, xmap, ymap, interpolation, borderMode);
144 DEF_PARAM_TEST(Sz_Depth_Cn_Inter_Scale, cv::Size, MatDepth, MatCn, Interpolation, double);
150 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))
158 const int interpolation = GET_PARAM(3); local
201 const int interpolation = cv::INTER_AREA; local
245 const int interpolation = GET_PARAM(3); local
295 const int interpolation = GET_PARAM(3); local
342 const int interpolation = GET_PARAM(3); local
    [all...]
  /external/opencv3/modules/cudawarping/include/opencv2/
cudawarping.hpp 71 @param interpolation Interpolation method (see resize ). INTER_NEAREST , INTER_LINEAR and
82 Values of pixels with non-integer coordinates are computed using the bilinear interpolation.
87 int interpolation, int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(),
102 @param interpolation Interpolation method. INTER_NEAREST , INTER_LINEAR and INTER_CUBIC are
108 CV_EXPORTS void resize(InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation = INTER_LINEAR, Stream& stream = Stream::Null());
117 @param flags Combination of interpolation methods (see resize) and the optional flag
119 INTER_NEAREST , INTER_LINEAR , and INTER_CUBIC interpolation methods are supported.
149 @param flags Combination of interpolation methods (see resize ) and the optional fla
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
target-config.js 9 'src/property-interpolation.js',
13 'src/interpolation.js',
14 'src/matrix-interpolation.js',
35 'src/property-interpolation.js',
39 'src/interpolation.js',
74 'test/js/interpolation.js',
75 'test/js/matrix-interpolation.js',
79 'test/js/property-interpolation.js',
  /external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp 94 int interpolation; member in class:CV_ImageWarpBaseTest
101 BaseTest(), interpolation(-1),
134 return str.empty() ? "Unsupported/Unkown interpolation type" : str;
181 // generating an interpolation type
182 interpolation = rng.uniform(0, CV_INTER_LANCZOS4 + 1);
186 if (interpolation == INTER_AREA)
216 if (interpolation == INTER_AREA && (scale_x < 1.0 || scale_y < 1.0))
217 interpolation = INTER_LINEAR;
246 if (interpolation == INTER_CUBIC)
248 else if (interpolation == INTER_LANCZOS4
    [all...]
  /external/opencv3/modules/cudawarping/src/cuda/
warp.cu 276 void warp_caller(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzb dst, int interpolation,
306 funcs[interpolation][borderMode](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(srcWhole), xoff, yoff,
310 template <typename T> void warpAffine_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation,
315 warp_caller<AffineTransform, T>(src, srcWhole, xoff, yoff, dst, interpolation, borderMode, borderValue, stream, cc20);
318 template void warpAffine_gpu<uchar >(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
319 //template void warpAffine_gpu<uchar2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
320 template void warpAffine_gpu<uchar3>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
321 template void warpAffine_gpu<uchar4>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
323 //template void warpAffine_gpu<schar>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
324 //template void warpAffine_gpu<char2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20)
    [all...]
remap.cu 207 PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20)
237 callers[interpolation][borderMode](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(srcWhole), xoff, yoff, xmap, ymap,
241 template void remap_gpu<uchar >(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
242 //template void remap_gpu<uchar2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
243 template void remap_gpu<uchar3>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
244 template void remap_gpu<uchar4>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
246 //template void remap_gpu<schar>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
247 //template void remap_gpu<char2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
248 //template void remap_gpu<char3>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
249 //template void remap_gpu<char4>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20)
    [all...]

Completed in 388 milliseconds

1 2 3 4 5 6