Home
last modified time | relevance | path

Searched refs:patch_size (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_nlmeans_opencl.c67 int patch_size; member
89 if (!(ctx->patch_size & 1)) { in nlmeans_opencl_init()
90 ctx->patch_size |= 1; in nlmeans_opencl_init()
93 ctx->patch_size); in nlmeans_opencl_init()
99 ctx->patch_size_uv = ctx->patch_size; in nlmeans_opencl_init()
348 patch = (p ? ctx->patch_size_uv : ctx->patch_size) / 2; in nlmeans_opencl_filter_frame()
404 …{ "p", "patch size", OFFSET(patch_size), AV_OPT_TYPE_INT, { .i64 = 2*3+1 }, …
Dvf_nlmeans.c52 int patch_size, patch_hsize; // patch size and half size member
71 …{ "p", "patch size", OFFSET(patch_size), AV_OPT_TYPE_INT, { .i64 = 3*2+1 }, …
532 CHECK_ODD_FIELD(patch_size, "Luma patch"); in init()
535 if (!s->patch_size_uv) s->patch_size_uv = s->patch_size; in init()
542 s->patch_hsize = s->patch_size / 2; in init()
547 s->patch_size, s->patch_size, s->patch_size_uv, s->patch_size_uv); in init()
/third_party/mesa3d/src/amd/compiler/tests/
Dhelpers.h116 uint32_t patch_size; variable
Dhelpers.cpp682 tess_state.patchControlPoints = patch_size; in create_graphics_pipeline()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/
Dimage_utils.h375 … std::shared_ptr<std::pair<int32_t, int32_t>> *patch_size, int32_t num_height, int32_t num_width,
Dimage_utils.cc1510 … std::shared_ptr<std::pair<int32_t, int32_t>> *patch_size, int32_t num_height, int32_t num_width, in ComputePatchSize() argument
1541 (*patch_size)->first = patch_h; in ComputePatchSize()
1542 (*patch_size)->second = patch_w; in ComputePatchSize()
1553 auto patch_size = std::make_shared<std::pair<int32_t, int32_t>>(0, 0); in SlicePatches() local
1558 RETURN_IF_NOT_OK(ComputePatchSize(input_cv, &patch_size, num_height, num_width, slice_mode)); in SlicePatches()
1559 std::tie(patch_h, patch_w) = *patch_size; in SlicePatches()