HomeSort by relevance Sort by last modified time
    Searched defs:CostFunction (Results 1 - 2 of 2) sorted by null

  /external/ceres-solver/include/ceres/
cost_function.h 34 // 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 {
66 CostFunction() : num_residuals_(0) {}
68 virtual ~CostFunction() {}
141 CERES_DISALLOW_COPY_AND_ASSIGN(CostFunction);
  /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_;

Completed in 47 milliseconds