HomeSort by relevance Sort by last modified time
    Searched full:interpolation (Results 51 - 75 of 1340) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/opencv3/modules/cudawarping/src/cuda/
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...]
resize.cu 181 // callers for nearest interpolation
208 // callers for linear interpolation
252 // callers for cubic interpolation
447 template <typename T> void resize(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream)
458 // change to linear if area interpolation upscaling
459 if (interpolation == 3 && (fx <= 1.f || fy <= 1.f))
460 interpolation = 1;
462 funcs[interpolation](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(srcWhole), yoff, xoff, static_cast< PtrStepSz<T> >(dst), fy, fx, stream);
465 template void resize<uchar >(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream);
466 template void resize<uchar3>(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream)
    [all...]
  /external/opencv3/modules/cudawarping/test/
test_remap.cpp 72 void remapGold(const cv::Mat& src, const cv::Mat& xmap, const cv::Mat& ymap, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal)
108 funcs[interpolation][src.depth()](src, xmap, ymap, dst, borderType, borderVal);
115 PARAM_TEST_CASE(Remap, cv::cuda::DeviceInfo, cv::Size, MatType, Interpolation, BorderType, UseRoi)
120 int interpolation; local
132 interpolation = GET_PARAM(3);
164 cv::cuda::remap(loadMat(src, useRoi), dst, loadMat(xmap, useRoi), loadMat(ymap, useRoi), interpolation, borderType, val); local
167 remapGold(src, xmap, ymap, dst_gold, interpolation, borderType, val);
176 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
InterpolationTest.java 27 import com.badlogic.gdx.math.Interpolation;
59 /** @return the {@link #position} with the {@link #selectedInterpolation interpolation} applied */
68 /** @return the {@link #selectedInterpolation selected} interpolation */
69 private Interpolation getInterpolation (String name) {
71 return (Interpolation)ClassReflection.getField(Interpolation.class, name).get(null);
87 Field[] interpolationFields = ClassReflection.getFields(Interpolation.class);
92 if (ClassReflection.isAssignableFrom(Interpolation.class, interpolationFields[i].getDeclaringClass()))
95 // get interpolation names
98 if (ClassReflection.isAssignableFrom(Interpolation.class, interpolationFields[i].getDeclaringClass()))
159 Interpolation interpolation = getInterpolation(selectedInterpolation); local
    [all...]
  /external/libopus/silk/float/
find_LPC_FLP.c 47 /* Used only for NLSF interpolation */
55 /* Default: No interpolation */
69 /* Search over interpolation indices to find the one with lowest residual energy */
78 /* Calculate residual energy with LSF interpolation */
86 /* Interpolation has lower residual energy */
98 /* NLSF interpolation is currently inactive, calculate NLSFs from full frame AR coefficients */
  /external/webrtc/webrtc/modules/audio_processing/vad/
pitch_internal.cc 15 // A 4-to-3 linear interpolation.
16 // The interpolation constants are derived as following:
37 // Gain interpolation is in log-domain, also returned in log-domain.
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/interpolation/
orphans-interpolation.html 13 <script src="resources/interpolation-test.js"></script>
shape-image-threshold.html 6 <script src="resources/interpolation-test.js"></script>
shape-margin.html 6 <script src="resources/interpolation-test.js"></script>
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/
interpolation.js 1 suite('interpolation', function() {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_InterpolateHalfHor_Luma.c 27 * This functions will help to calculate Half Pel luma interpolation
42 * This function performs interpolation for horizontal 1/2-pel positions
49 * [in] iDstStep Step of the destination(interpolation) buffer.
52 * [out] pDst Pointer to the interpolation buffer of the 1/2-pel
armVCM4P10_InterpolateHalfVer_Luma.c 27 * This functions will help to calculate Half Pel luma interpolation
42 * This function performs interpolation for vertical 1/2-pel positions
50 * [in] iDstStep Step of the destination(interpolation) buffer.
53 * [out] pDst Pointer to the interpolation buffer of the 1/2-pel
omxVCM4P10_InterpolateHalfHor_Luma.c 27 * This function will calculate Half horizontal luma interpolation
42 * This function performs interpolation for two horizontal 1/2-pel positions
50 * iDstStep - Step of the destination(interpolation) buffer; must be a
57 * pDstLeft -Pointer to the interpolation buffer of the left -pel position
62 * pDstRight -Pointer to the interpolation buffer of the right -pel
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-model-builder/3.3.9/
maven-model-builder-3.3.9-sources.jar 
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_quat.hpp 216 /// Spherical linear interpolation of two quaternions.
217 /// The interpolation is oriented and the rotation is performed at constant speed.
218 /// For short path spherical linear interpolation, use the slerp function.
222 /// @param a Interpolation factor. The interpolation is defined beyond the range [0, 1].
231 /// Linear interpolation of two quaternions.
232 /// The interpolation is oriented.
236 /// @param a Interpolation factor. The interpolation is defined in the range [0, 1].
244 /// Spherical linear interpolation of two quaternions
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
MicrosphereInterpolatingFunction.java 17 package org.apache.commons.math.analysis.interpolation;
45 * Internal accounting data for the interpolation algorithm.
130 * @param xval the arguments for the interpolation points.
131 * {@code xval[i][0]} is the first component of interpolation point
133 * until {@code xval[i][d-1]}, the last component of that interpolation
136 * @param yval the values for the interpolation points
142 * {@code xval} (equal to {@code n}, the number of interpolation points)
185 * @param point Interpolation point.
200 // Vector between interpolation point and current sample point.
205 // No need to interpolate, as the interpolation point i
    [all...]
  /external/libavc/common/arm/
ih264_inter_pred_luma_vert_qpel_a9q.s 26 @* Contains function definitions for inter prediction vertical quarter pel interpolation.
51 @* sec 8.4.2.2.1 titled "Luma sample interpolation process"
158 vld1.u32 {q10}, [r7], r2 @ Load for interpolation row 0
159 vrhadd.u8 q15, q10, q15 @ Interpolation to obtain qpel value
176 vld1.u32 {q7}, [r7], r2 @ Load for interpolation row 1
178 vrhadd.u8 q15, q7, q15 @ Interpolation to obtain qpel value
191 vld1.u32 {q8}, [r7], r2 @ Load for interpolation row 2
193 vrhadd.u8 q15, q8, q15 @ Interpolation to obtain qpel value
202 vld1.u32 {q9}, [r7], r2 @ Load for interpolation row 3
204 vrhadd.u8 q15, q9, q15 @ Interpolation to obtain qpel valu
    [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));
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...]
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));
  /external/webrtc/webrtc/common_video/libyuv/include/
scaler.h 27 kScalePoint, // no interpolation
37 // Set interpolation properties:
  /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/libopus/silk/fixed/
find_LPC_FIX.c 50 /* Used only for LSF interpolation */
59 /* Default: no interpolation */
89 /* Search over interpolation indices to find the one with lowest residual energy */
97 /* Calculate residual energy with NLSF interpolation */
114 /* Compare with first half energy without NLSF interpolation, or best interpolated value so far */
136 /* Interpolation has lower residual energy */
145 /* NLSF interpolation is currently inactive, calculate NLSFs from full frame AR coefficients */
  /external/mesa3d/src/gallium/drivers/radeon/
SIAssignInterpRegs.cpp 1 //===-- SIAssignInterpRegs.cpp - Assign interpolation registers -----------===//
10 // This pass maps the pseudo interpolation registers to the correct physical
11 // registers. Prior to executing a fragment shader, the GPU loads interpolation
13 // interpolation parameter ends up in depends on the type of the interpolation
14 // parameter as well as how many interpolation parameters are used by the
92 /* First pass, mark the interpolation values that are used. */
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Slider.java 21 import com.badlogic.gdx.math.Interpolation;
41 private Interpolation visualInterpolationInverse = Interpolation.linear;
157 /** Sets the inverse interpolation to use for display. This should perform the inverse of the
158 * {@link #setVisualInterpolation(Interpolation) visual interpolation}. */
159 public void setVisualInterpolationInverse (Interpolation interpolation) {
160 this.visualInterpolationInverse = interpolation;

Completed in 476 milliseconds

1 23 4 5 6 7 8 91011>>