Searched defs:CostFunction (Results 1 - 2 of 2) sorted by relevance

/external/ceres-solver/include/ceres/
H A Dcost_function.h34 // subclass CostFunction to define their own terms in the least squares problem.
38 // directly implementing the CostFunction interface. This often results in both
41 // CostFunction interface; for example, this is true when calling legacy code
64 class CERES_EXPORT CostFunction { class in namespace:ceres
66 CostFunction() : num_residuals_(0) {} function in class:ceres::CostFunction
68 virtual ~CostFunction() {}
141 CERES_DISALLOW_COPY_AND_ASSIGN(CostFunction);
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
H A Dseam_finders.hpp121 enum CostFunction { COLOR, COLOR_GRAD }; enum in class:cv::detail::DpSeamFinder
123 DpSeamFinder(CostFunction costFunc = COLOR);
125 CostFunction costFunction() const { return costFunc_; }
126 void setCostFunction(CostFunction val) { costFunc_ = val; }
207 CostFunction costFunc_;

Completed in 588 milliseconds