Home
last modified time | relevance | path

Searched refs:cost_type (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dseam_finders.hpp239 GraphCutSeamFinder(int cost_type = COST_COLOR_GRAD, float terminal_cost = 10000.f,
258 GraphCutSeamFinderGpu(int cost_type = COST_COLOR_GRAD, float terminal_cost = 10000.f, in GraphCutSeamFinderGpu() argument
260 : cost_type_(cost_type), terminal_cost_(terminal_cost), in GraphCutSeamFinderGpu()
/external/opencv3/modules/stitching/src/
Dseam_finders.cpp1063 Impl(int cost_type, float terminal_cost, float bad_region_penalty) in Impl() argument
1064 … : cost_type_(cost_type), terminal_cost_(terminal_cost), bad_region_penalty_(bad_region_penalty) {} in Impl()
1316 GraphCutSeamFinder::GraphCutSeamFinder(int cost_type, float terminal_cost, float bad_region_penalty) in GraphCutSeamFinder() argument
1317 : impl_(new Impl(cost_type, terminal_cost, bad_region_penalty)) {} in GraphCutSeamFinder()