/external/opencv3/modules/cudawarping/ |
CMakeLists.txt | 5 set(the_description "CUDA-accelerated Image Warping")
|
/external/freetype/src/autofit/ |
afmodule.c | 162 else if ( !ft_strcmp( property_name, "warping" ) ) 164 FT_Bool* warping = (FT_Bool*)value; local 167 module->warping = *warping; 189 FT_Bool warping = module->warping; local 238 else if ( !ft_strcmp( property_name, "warping" ) ) 243 *val = warping; 297 module->warping = 0;
|
afmodule.h | 42 FT_Bool warping; member in struct:AF_ModuleRec_
|
afwarp.h | 5 /* Auto-fitter warping algorithm (specification). */
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/ |
afmodule.c | 170 else if ( !ft_strcmp( property_name, "warping" ) ) 172 FT_Bool* warping = (FT_Bool*)value; local 175 module->warping = *warping; 237 FT_Bool warping = module->warping; local 286 else if ( !ft_strcmp( property_name, "warping" ) ) 291 *val = warping; 372 module->warping = 0;
|
afmodule.h | 42 FT_Bool warping; member in struct:AF_ModuleRec_
|
afwarp.h | 5 /* Auto-fitter warping algorithm (specification). */
|
/external/libopus/silk/float/ |
warped_autocorrelation_FLP.c | 38 const silk_float warping, /* I Warping coefficient */ 57 tmp2 = state[ i ] + warping * ( state[ i + 1 ] - tmp1 ); 61 tmp1 = state[ i + 1 ] + warping * ( state[ i + 2 ] - tmp2 );
|
noise_shape_analysis_FLP.c | 139 silk_float delta, BWExp1, BWExp2, gain_mult, gain_add, strength, b, warping; local 221 /* Slightly more warping in analysis will move quantization noise up in frequency, where it's better masked */ 222 warping = (silk_float)psEnc->sCmn.warping_Q16 / 65536.0f + 0.01f * psEncCtrl->coding_quality; 224 warping = 0.0f; 247 silk_warped_autocorrelation_FLP( auto_corr, x_windowed, warping, 262 /* Adjust gain for warping */ 263 psEncCtrl->Gains[ k ] *= warped_gain( &psEncCtrl->AR2[ k * MAX_SHAPE_LPC_ORDER ], warping, psEnc->sCmn.shapingLPCOrder ); 285 warping, 3.999f, psEnc->sCmn.shapingLPCOrder );
|
/external/freetype/include/ |
ftautoh.h | 398 * warping 405 * switches warping on and off. 407 * Warping only works in `light' auto-hinting mode. The idea of the 414 * By default, warping is off. The example below shows how to switch on 415 * warping (omitting the error handling). 419 * FT_Bool warping = 1; 425 * "warping", &warping ); 431 * The warping code can also change advance widths. Have a look at the 435 * Since warping is a global property of the auto-hinter it is best t [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/ |
ftautoh.h | 398 * warping 405 * switches warping on and off. 407 * Warping only works in `light' auto-hinting mode. The idea of the 414 * By default, warping is off. The example below shows how to switch on 415 * warping (omitting the error handling). 419 * FT_Bool warping = 1; 425 * "warping", &warping ); 431 * The warping code can also change advance widths. Have a look at the 435 * Since warping is a global property of the auto-hinter it is best t [all...] |
/external/pdfium/third_party/freetype/include/freetype/ |
ftautoh.h | 398 * warping 405 * switches warping on and off. 407 * Warping only works in `light' auto-hinting mode. The idea of the 414 * By default, warping is off. The example below shows how to switch on 415 * warping (omitting the error handling). 419 * FT_Bool warping = 1; 425 * "warping", &warping ); 431 * The warping code can also change advance widths. Have a look at the 435 * Since warping is a global property of the auto-hinter it is best t [all...] |
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftautoh.h | 398 * warping 405 * switches warping on and off. 407 * Warping only works in `light' auto-hinting mode. The idea of the 414 * By default, warping is off. The example below shows how to switch on 415 * warping (omitting the error handling). 419 * FT_Bool warping = 1; 425 * "warping", &warping ); 431 * The warping code can also change advance widths. Have a look at the 435 * Since warping is a global property of the auto-hinter it is best t [all...] |
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/ |
NCVBroxOpticalFlow.hpp | 49 // High accuracy optical flow estimation based on a theory for warping. 79 /// number of warping iterations (number of pyramid levels)
|
/external/opencv3/modules/cudev/include/opencv2/ |
cudev.hpp | 98 #include "cudev/ptr2d/warping.hpp" 110 #include "cudev/expr/warping.hpp"
|
/packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
MosaicRenderer.java | 75 * update its texture and warping transformation. Any calls to step() 86 * @param flag boolean flag to set the warping to true or false.
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/docs/reference/ |
ft2-auto_hinter.html | 110 <tr><td><a href="#FT_Prop_GlyphToScriptMap">FT_Prop_GlyphToScriptMap</a></td><td><a href="#warping">warping</a></td></tr> 371 <h3 id="warping">warping</h3> 374 <p>If FreeType gets compiled with option AF_CONFIG_OPTION_USE_WARPER to activate the warp hinting code in the auto-hinter, this property switches warping on and off.</p> 375 <p>Warping only works in ‘light’ auto-hinting mode. The idea of the code is to slightly scale and shift a glyph along the non-hinted dimension (which is usually the horizontal axis) so that as much of its segments are aligned (more or less) to the grid. To find out a glyph's optimal scaling and shifting value, various parameter combinations are tried and scored.</p> 376 <p>By default, warping is off. The example below shows how to switch on warping (omitting the error handling).</p> 379 FT_Bool warping = 1; 385 "warping", &warping ) [all...] |
/external/neven/Embedded/common/src/b_ImageEm/ |
Functions.h | 46 * The actual warping happens using pixel interpolation 67 * The actual warping happens using pixel replication (fast but prone to artefacts)
|
UInt16ByteImage.h | 140 /** applies affine linear warping to pixels positions of imageA before copying the into *ptrA */ 151 /** applies affine linear warping to pixels positions of ptrA before copying the into *ptrA. 153 * utilizing 8-bit data access for warping.
|
UInt8Image.h | 138 /** applies affine linear warping to pixels positions of imageA before copying the into *ptrA 150 /** applies affine linear warping to pixels positions of imageA before copying the into *ptrA */
|
/external/opencv3/modules/cudaoptflow/src/ |
brox.cpp | 82 //! number of warping iterations (number of pyramid levels) 103 //! number of warping iterations (number of pyramid levels)
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/include/ |
viddec_fw_mp4.h | 188 // Sprite Trajectory can have dmv_codes for each warping point. 191 // 28:31 - warping_point_index - identifies which warping point the warping code refers to.
|
/external/libopus/silk/fixed/ |
warped_autocorrelation_FIX.c | 42 const opus_int warping_Q16, /* I Warping coefficient */
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_feature_matching.h | 229 * \param affine prewarp the 11x11 patches by given affine transform. 0 means no warping, 230 1 means nearest neighbor, 2 means bilinear warping.
|
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_feature_matching.h | 229 * \param affine prewarp the 11x11 patches by given affine transform. 0 means no warping, 230 1 means nearest neighbor, 2 means bilinear warping.
|