OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:costFunction
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
seam_finders.hpp
121
enum
CostFunction
{ COLOR, COLOR_GRAD };
123
DpSeamFinder(
CostFunction
costFunc = COLOR);
125
CostFunction
costFunction
() const { return costFunc_; }
126
void setCostFunction(
CostFunction
val) { costFunc_ = val; }
207
CostFunction
costFunc_;
/external/opencv3/modules/stitching/src/
seam_finders.cpp
165
DpSeamFinder::DpSeamFinder(
CostFunction
costFunc) : costFunc_(costFunc) {}
530
CV_Assert(
costFunction
() == COLOR_GRAD);
[
all
...]
Completed in 69 milliseconds