/external/freetype/src/autofit/ |
H A D | afwarp.c | 67 /* `xx1' to `xx2', and store the best result in `warper'. If */ 72 af_warper_compute_line_best( AF_Warper warper, argument 89 idx0 = xx1 - warper->t1; 93 FT_Pos xx1min = warper->x1min; 94 FT_Pos xx1max = warper->x1max; 98 if ( xx1min + w < warper->x2min ) 99 xx1min = warper->x2min - w; 101 xx1max = warper->x1max; 102 if ( xx1max + w > warper->x2max ) 103 xx1max = warper 162 af_warper_compute( AF_Warper warper, AF_GlyphHints hints, AF_Dimension dim, FT_Fixed *a_scale, FT_Pos *a_delta ) argument [all...] |
H A D | afwarp.h | 51 af_warper_compute( AF_Warper warper,
|
H A D | afcjk.c | 1412 /* get (global) warper flag */ 2311 AF_WarperRec warper; local 2316 af_warper_compute( &warper, hints, (AF_Dimension)dim,
|
H A D | aflatin2.c | 1575 /* get (global) warper flag */ 2370 AF_WarperRec warper; local 2375 af_warper_compute( &warper, hints, dim, &scale, &delta );
|
H A D | aflatin.c | 2501 /* get (global) warper flag */ 3434 AF_WarperRec warper; local 3439 af_warper_compute( &warper, hints, (AF_Dimension)dim,
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/ |
H A D | afwarp.c | 67 /* `xx1' to `xx2', and store the best result in `warper'. If */ 72 af_warper_compute_line_best( AF_Warper warper, argument 89 idx0 = xx1 - warper->t1; 93 FT_Pos xx1min = warper->x1min; 94 FT_Pos xx1max = warper->x1max; 98 if ( xx1min + w < warper->x2min ) 99 xx1min = warper->x2min - w; 101 xx1max = warper->x1max; 102 if ( xx1max + w > warper->x2max ) 103 xx1max = warper 162 af_warper_compute( AF_Warper warper, AF_GlyphHints hints, AF_Dimension dim, FT_Fixed *a_scale, FT_Pos *a_delta ) argument [all...] |
H A D | afwarp.h | 51 af_warper_compute( AF_Warper warper,
|
H A D | afcjk.c | 1354 /* get (global) warper flag */ 2253 AF_WarperRec warper; local 2258 af_warper_compute( &warper, hints, (AF_Dimension)dim,
|
H A D | aflatin2.c | 1570 /* get (global) warper flag */ 2365 AF_WarperRec warper; local 2370 af_warper_compute( &warper, hints, dim, &scale, &delta );
|
H A D | aflatin.c | 2109 /* get (global) warper flag */ 2965 AF_WarperRec warper; local 2970 af_warper_compute( &warper, hints, (AF_Dimension)dim,
|
/external/opencv3/modules/stitching/test/ocl/ |
H A D | test_warpers.cpp | 92 Ptr<detail::RotationWarper> warper = creator->create(2.0); local 94 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap)); 95 OCL_ON(warper->buildMaps(usrc.size(), K, R, uxmap, uymap)); 97 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst)); 98 OCL_ON(warper->warp(usrc, K, R, INTER_LINEAR, BORDER_REPLICATE, udst)); 113 Ptr<detail::RotationWarper> warper = creator->create(2.0); local 115 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap)); 116 OCL_ON(warper->buildMaps(usrc.size(), K, R, uxmap, uymap)); 118 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst)); 119 OCL_ON(warper 134 Ptr<detail::RotationWarper> warper = creator->create(2.0); local [all...] |
/external/opencv3/modules/stitching/perf/opencl/ |
H A D | perf_warpers.cpp | 83 warper = creator->create(scale); 88 return warper->buildMaps(src_size, K, R, xmap, ymap); 93 return warper->warp(src, K, R, interp_mode, border_mode, dst); 97 Ptr<detail::RotationWarper> warper; member in class:cvtest::ocl::WarperBase 122 const WarperBase warper(get<1>(params), srcSize); 126 OCL_TEST_CYCLE() warper.buildMaps(srcSize, xmap, ymap); 137 const WarperBase warper(get<1>(params), srcSize); 143 OCL_TEST_CYCLE() warper.warp(src, INTER_LINEAR, BORDER_REPLICATE, dst);
|
/external/opencv3/modules/stitching/include/opencv2/ |
H A D | stitching.hpp | 156 Ptr<WarperCreator> warper() { return warper_; } function in class:cv::Stitcher 157 const Ptr<WarperCreator> warper() const { return warper_; } function in class:cv::Stitcher
|
/external/opencv3/samples/cpp/ |
H A D | stitching_detailed.cpp | 640 cout << "Can't create the following warper '" << warp_type << "'\n"; 644 Ptr<RotationWarper> warper = warper_creator->create(static_cast<float>(warped_image_scale * seam_work_aspect)); local 654 corners[i] = warper->warp(images[i], K, cameras[i].R, INTER_LINEAR, BORDER_REFLECT, images_warped[i]); 657 warper->warp(masks[i], K, cameras[i].R, INTER_NEAREST, BORDER_CONSTANT, masks_warped[i]); 740 warper = warper_creator->create(warped_image_scale); 760 Rect roi = warper->warpRoi(sz, K, cameras[i].R); 776 warper->warp(img, K, cameras[img_idx].R, INTER_LINEAR, BORDER_REFLECT, img_warped); 781 warper->warp(mask, K, cameras[img_idx].R, INTER_NEAREST, BORDER_CONSTANT, mask_warped);
|