Home
last modified time | relevance | path

Searched refs:BundleAdjusterReproj (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmotion_estimators.hpp204 class CV_EXPORTS BundleAdjusterReproj : public BundleAdjusterBase class
207 BundleAdjusterReproj() : BundleAdjusterBase(7, 2) {} in BundleAdjusterReproj() function in cv::detail::BundleAdjusterReproj
/external/opencv3/modules/stitching/src/
Dmotion_estimators.cpp282 void BundleAdjusterReproj::setUpInitialCameraParams(const std::vector<CameraParams> &cameras) in setUpInitialCameraParams()
308 void BundleAdjusterReproj::obtainRefinedCameraParams(std::vector<CameraParams> &cameras) const in obtainRefinedCameraParams()
330 void BundleAdjusterReproj::calcError(Mat &err) in calcError()
397 void BundleAdjusterReproj::calcJacobian(Mat &jac) in calcJacobian()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp525 if (ba_cost_func == "reproj") adjuster = makePtr<detail::BundleAdjusterReproj>(); in main()