HomeSort by relevance Sort by last modified time
    Searched refs:focal (Results 1 - 19 of 19) sorted by null

  /external/opencv3/modules/stitching/src/
camera.cpp 48 CameraParams::CameraParams() : focal(1), aspect(1), ppx(0), ppy(0),
55 focal = other.focal;
67 k(0,0) = focal; k(0,2) = ppx;
68 k(1,1) = focal * aspect; k(1,2) = ppy;
motion_estimators.cpp 70 K_from(0,0) = cameras[edge.from].focal;
71 K_from(1,1) = cameras[edge.from].focal * cameras[edge.from].aspect;
76 K_to(0,0) = cameras[edge.to].focal;
77 K_to(1,1) = cameras[edge.to].focal * cameras[edge.to].aspect;
118 // Robustly estimate focal length from rotating cameras
140 // Estimate focal length and set it for all cameras
145 cameras[i].focal = focals[i];
288 cam_params_.at<double>(i * 7, 0) = cameras[i].focal;
312 cameras[i].focal = cam_params_.at<double>(i * 7, 0);
469 cam_params_.at<double>(i * 4, 0) = cameras[i].focal;
    [all...]
stitcher.cpp 247 cameras_[i].focal *= compose_work_aspect;
507 // Find median focal length and use it as final image scale
512 focals.push_back(cameras_[i].focal);
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
camera.hpp 65 double focal; // Focal length member in struct:cv::detail::CameraParams
  /external/ceres-solver/examples/
snavely_reprojection_error.h 51 // focal length and 2 for radial distortion. The principal point is not modeled
73 const T& focal = camera[6]; local
84 T predicted_x = focal * distortion * xp;
85 T predicted_y = focal * distortion * yp;
108 // translation, 1 for focal length and 2 for radial distortion. The
122 const T& focal = camera_translation_and_intrinsics[3]; local
147 T predicted_x = focal * distortion * xp;
148 T predicted_y = focal * distortion * yp;
simple_bundle_adjuster.cc 120 // focal length and 2 for radial distortion. The principal point is not modeled
152 const T& focal = camera[6]; local
153 T predicted_x = focal * distortion * xp;
154 T predicted_y = focal * distortion * yp;