Home
last modified time | relevance | path

Searched refs:warper (Results 1 – 17 of 17) sorted by relevance

/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/
Dafwarp.c72 af_warper_compute_line_best( AF_Warper warper, in af_warper_compute_line_best() argument
89 idx0 = xx1 - warper->t1; in af_warper_compute_line_best()
93 FT_Pos xx1min = warper->x1min; in af_warper_compute_line_best()
94 FT_Pos xx1max = warper->x1max; in af_warper_compute_line_best()
98 if ( xx1min + w < warper->x2min ) in af_warper_compute_line_best()
99 xx1min = warper->x2min - w; in af_warper_compute_line_best()
101 xx1max = warper->x1max; in af_warper_compute_line_best()
102 if ( xx1max + w > warper->x2max ) in af_warper_compute_line_best()
103 xx1max = warper->x2max - w; in af_warper_compute_line_best()
105 idx_min = xx1min - warper->t1; in af_warper_compute_line_best()
[all …]
Dafwarp.h51 af_warper_compute( AF_Warper warper,
Dafcjk.c2253 AF_WarperRec warper; in af_cjk_hints_apply() local
2258 af_warper_compute( &warper, hints, (AF_Dimension)dim, in af_cjk_hints_apply()
Daflatin2.c2365 AF_WarperRec warper; in af_latin2_hints_apply() local
2370 af_warper_compute( &warper, hints, dim, &scale, &delta ); in af_latin2_hints_apply()
Daflatin.c2965 AF_WarperRec warper; in af_latin_hints_apply() local
2970 af_warper_compute( &warper, hints, (AF_Dimension)dim, in af_latin_hints_apply()
/external/freetype/src/autofit/
Dafwarp.c72 af_warper_compute_line_best( AF_Warper warper, in af_warper_compute_line_best() argument
89 idx0 = xx1 - warper->t1; in af_warper_compute_line_best()
93 FT_Pos xx1min = warper->x1min; in af_warper_compute_line_best()
94 FT_Pos xx1max = warper->x1max; in af_warper_compute_line_best()
98 if ( xx1min + w < warper->x2min ) in af_warper_compute_line_best()
99 xx1min = warper->x2min - w; in af_warper_compute_line_best()
101 xx1max = warper->x1max; in af_warper_compute_line_best()
102 if ( xx1max + w > warper->x2max ) in af_warper_compute_line_best()
103 xx1max = warper->x2max - w; in af_warper_compute_line_best()
105 idx_min = xx1min - warper->t1; in af_warper_compute_line_best()
[all …]
Dafwarp.h51 af_warper_compute( AF_Warper warper,
Dafcjk.c2235 AF_WarperRec warper; in af_cjk_hints_apply() local
2240 af_warper_compute( &warper, hints, (AF_Dimension)dim, in af_cjk_hints_apply()
Daflatin2.c2346 AF_WarperRec warper; in af_latin2_hints_apply() local
2351 af_warper_compute( &warper, hints, dim, &scale, &delta ); in af_latin2_hints_apply()
Daflatin.c2861 AF_WarperRec warper; in af_latin_hints_apply() local
2866 af_warper_compute( &warper, hints, (AF_Dimension)dim, in af_latin_hints_apply()
/external/opencv3/modules/stitching/test/ocl/
Dtest_warpers.cpp92 Ptr<detail::RotationWarper> warper = creator->create(2.0); in OCL_TEST_F() local
94 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap)); in OCL_TEST_F()
95 OCL_ON(warper->buildMaps(usrc.size(), K, R, uxmap, uymap)); in OCL_TEST_F()
97 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst)); in OCL_TEST_F()
98 OCL_ON(warper->warp(usrc, K, R, INTER_LINEAR, BORDER_REPLICATE, udst)); in OCL_TEST_F()
113 Ptr<detail::RotationWarper> warper = creator->create(2.0); in OCL_TEST_F() local
115 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap)); in OCL_TEST_F()
116 OCL_ON(warper->buildMaps(usrc.size(), K, R, uxmap, uymap)); in OCL_TEST_F()
118 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst)); in OCL_TEST_F()
119 OCL_ON(warper->warp(usrc, K, R, INTER_LINEAR, BORDER_REPLICATE, udst)); in OCL_TEST_F()
[all …]
/external/opencv3/modules/stitching/perf/opencl/
Dperf_warpers.cpp83 warper = creator->create(scale); in WarperBase()
88 return warper->buildMaps(src_size, K, R, xmap, ymap); in buildMaps()
93 return warper->warp(src, K, R, interp_mode, border_mode, dst); in warp()
97 Ptr<detail::RotationWarper> warper; member in cvtest::ocl::WarperBase
122 const WarperBase warper(get<1>(params), srcSize); in OCL_PERF_TEST_P() local
126 OCL_TEST_CYCLE() warper.buildMaps(srcSize, xmap, ymap); in OCL_PERF_TEST_P()
137 const WarperBase warper(get<1>(params), srcSize); in OCL_PERF_TEST_P() local
143 OCL_TEST_CYCLE() warper.warp(src, INTER_LINEAR, BORDER_REPLICATE, dst); in OCL_PERF_TEST_P()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp644 …Ptr<RotationWarper> warper = warper_creator->create(static_cast<float>(warped_image_scale * seam_w… in main() local
654 …corners[i] = warper->warp(images[i], K, cameras[i].R, INTER_LINEAR, BORDER_REFLECT, images_warped[… in main()
657 warper->warp(masks[i], K, cameras[i].R, INTER_NEAREST, BORDER_CONSTANT, masks_warped[i]); in main()
740 warper = warper_creator->create(warped_image_scale); in main()
760 Rect roi = warper->warpRoi(sz, K, cameras[i].R); in main()
776 warper->warp(img, K, cameras[img_idx].R, INTER_LINEAR, BORDER_REFLECT, img_warped); in main()
781 warper->warp(mask, K, cameras[img_idx].R, INTER_NEAREST, BORDER_CONSTANT, mask_warped); in main()
/external/opencv3/modules/stitching/include/opencv2/
Dstitching.hpp156 Ptr<WarperCreator> warper() { return warper_; } in warper() function in cv::Stitcher
157 const Ptr<WarperCreator> warper() const { return warper_; } in warper() function in cv::Stitcher
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/
DChangeLog2247 [autofit] Add debugging hook to disable warper.
2259 of warper.
DChangeLog.236445 (af_loader_load_g): Disable the warper (i.e., the light hinting
6448 warper for the next release.
6500 Fix and enable the warper to improve `light' hinting mode. This is
DChangeLog.244305 Add AF_CONFIG_OPTION_USE_WARPER to control the autofit warper.