Home
last modified time | relevance | path

Searched refs:focal (Results 1 – 25 of 52) sorted by relevance

123

/external/opencv3/modules/stitching/src/
Dcamera.cpp48 CameraParams::CameraParams() : focal(1), aspect(1), ppx(0), ppy(0), in CameraParams()
55 focal = other.focal; in operator =()
67 k(0,0) = focal; k(0,2) = ppx; in K()
68 k(1,1) = focal * aspect; k(1,2) = ppy; in K()
Dmotion_estimators.cpp70 K_from(0,0) = cameras[edge.from].focal; in operator ()()
71 K_from(1,1) = cameras[edge.from].focal * cameras[edge.from].aspect; in operator ()()
76 K_to(0,0) = cameras[edge.to].focal; in operator ()()
77 K_to(1,1) = cameras[edge.to].focal * cameras[edge.to].aspect; in operator ()()
145 cameras[i].focal = focals[i]; in estimate()
288 cam_params_.at<double>(i * 7, 0) = cameras[i].focal; in setUpInitialCameraParams()
312 cameras[i].focal = cam_params_.at<double>(i * 7, 0); in obtainRefinedCameraParams()
469 cam_params_.at<double>(i * 4, 0) = cameras[i].focal; in setUpInitialCameraParams()
490 cameras[i].focal = cam_params_.at<double>(i * 4, 0); in obtainRefinedCameraParams()
Dstitcher.cpp247 cameras_[i].focal *= compose_work_aspect; in composePanorama()
512 focals.push_back(cameras_[i].focal); in estimateCameraParams()
/external/ceres-solver/examples/
Dsnavely_reprojection_error.h73 const T& focal = camera[6]; in operator() local
84 T predicted_x = focal * distortion * xp; in operator()
85 T predicted_y = focal * distortion * yp; in operator()
122 const T& focal = camera_translation_and_intrinsics[3]; in operator() local
147 T predicted_x = focal * distortion * xp; in operator()
148 T predicted_y = focal * distortion * yp; in operator()
Dsimple_bundle_adjuster.cc152 const T& focal = camera[6]; in operator ()() local
153 T predicted_x = focal * distortion * xp; in operator ()()
154 T predicted_y = focal * distortion * yp; in operator ()()
/external/skia/src/effects/gradients/
DSkTwoPointConicalGradient_gpu.cpp324 const SkPoint& focal = shader.getStartCenter(); in set_matrix_focal_conical() local
335 matrix.mapPoints(&focalTrans, &focal, 1); in set_matrix_focal_conical()
394 SkScalar focal() const { return fFocalX; } in focal() function in FocalOutside2PtConicalEffect
566 SkScalar focal = data.focal(); in onSetData() local
568 if (fCachedFocal != focal) { in onSetData()
569 SkScalar oneMinus2F = 1.f - SkScalarMul(focal, focal); in onSetData()
572 SkScalarToFloat(focal), in onSetData()
577 fCachedFocal = focal; in onSetData()
609 SkScalar focal() const { return fFocalX; } in focal() function in FocalInside2PtConicalEffect
730 GrGLSLShaderVar focal = uniformHandler->getUniformVariable(fFocalUni); in emitCode() local
[all …]
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dcamera.hpp65 double focal; // Focal length member
/external/mesa3d/src/gallium/state_trackers/vega/
Dpaint.c305 const VGfloat *focal = &paint->gradient.radial.vals[2]; in paint_radial_gradient_buffer() local
312 map[0] = center[0] - focal[0]; in paint_radial_gradient_buffer()
313 map[1] = center[1] - focal[1]; in paint_radial_gradient_buffer()
327 focal = new_focal; in paint_radial_gradient_buffer()
341 matrix_translate(&mat, -focal[0], -focal[1]); in paint_radial_gradient_buffer()
/external/ceres-solver/internal/ceres/
Dsystem_test.cc448 const T& focal = camera[6]; in operator ()() local
455 T xp = - focal * p[0] / p[2]; in operator ()()
456 T yp = - focal * p[1] / p[2]; in operator ()()
/external/opencv3/modules/java/src/
Dcalib3d+Calib3d.java887 …public static Mat findEssentialMat(Mat points1, Mat points2, double focal, Point pp, int method, d… in findEssentialMat() argument
890 …Mat retVal = new Mat(findEssentialMat_0(points1.nativeObj, points2.nativeObj, focal, pp.x, pp.y, m… in findEssentialMat()
896 …public static Mat findEssentialMat(Mat points1, Mat points2, double focal, Point pp, int method, d… in findEssentialMat() argument
899 …Mat retVal = new Mat(findEssentialMat_1(points1.nativeObj, points2.nativeObj, focal, pp.x, pp.y, m… in findEssentialMat()
933 …public static int recoverPose(Mat E, Mat points1, Mat points2, Mat R, Mat t, double focal, Point p… in recoverPose() argument
936 …ativeObj, points1.nativeObj, points2.nativeObj, R.nativeObj, t.nativeObj, focal, pp.x, pp.y, mask.… in recoverPose()
942 …public static int recoverPose(Mat E, Mat points1, Mat points2, Mat R, Mat t, double focal, Point p… in recoverPose() argument
945 …_1(E.nativeObj, points1.nativeObj, points2.nativeObj, R.nativeObj, t.nativeObj, focal, pp.x, pp.y); in recoverPose()
1268 …findEssentialMat_0(long points1_nativeObj, long points2_nativeObj, double focal, double pp_x, doub… in findEssentialMat_0() argument
1269 …findEssentialMat_1(long points1_nativeObj, long points2_nativeObj, double focal, double pp_x, doub… in findEssentialMat_1() argument
[all …]
Dcalib3d.cpp3127 …(JNIEnv* env, jclass , jlong points1_nativeObj, jlong points2_nativeObj, jdouble focal, jdouble pp… in Java_org_opencv_calib3d_Calib3d_findEssentialMat_10() argument
3136 …::Mat _retval_ = cv::findEssentialMat( points1, points2, (double)focal, pp, (int)method, (double)p… in Java_org_opencv_calib3d_Calib3d_findEssentialMat_10()
3151 …(JNIEnv* env, jclass , jlong points1_nativeObj, jlong points2_nativeObj, jdouble focal, jdouble pp… in Java_org_opencv_calib3d_Calib3d_findEssentialMat_11() argument
3159 …::Mat _retval_ = cv::findEssentialMat( points1, points2, (double)focal, pp, (int)method, (double)p… in Java_org_opencv_calib3d_Calib3d_findEssentialMat_11()
3228 …j, jlong points2_nativeObj, jlong R_nativeObj, jlong t_nativeObj, jdouble focal, jdouble pp_x, jdo… in Java_org_opencv_calib3d_Calib3d_recoverPose_10() argument
3240 int _retval_ = cv::recoverPose( E, points1, points2, R, t, (double)focal, pp, mask ); in Java_org_opencv_calib3d_Calib3d_recoverPose_10()
3255 …j, jlong points2_nativeObj, jlong R_nativeObj, jlong t_nativeObj, jdouble focal, jdouble pp_x, jdo… in Java_org_opencv_calib3d_Calib3d_recoverPose_11() argument
3266 int _retval_ = cv::recoverPose( E, points1, points2, R, t, (double)focal, pp ); in Java_org_opencv_calib3d_Calib3d_recoverPose_11()
/external/opencv3/modules/viz/src/vtk/
DvtkVizInteractorStyle.cpp167 Vec3d focal(cam->GetFocalPoint()), pos(cam->GetPosition()), view(cam->GetViewUp()); in printCameraParams() local
173 … clip[0], clip[1], focal[0], focal[1], focal[2], pos[0], pos[1], pos[2], view[0], view[1], view[2], in printCameraParams()
/external/opencv3/doc/py_tutorials/py_calib3d/py_depthmap/
Dpy_depthmap.markdown26 …camera center. \f$B\f$ is the distance between two cameras (which we know) and \f$f\f$ is the focal
/external/opencv3/modules/calib3d/include/opencv2/
Dcalib3d.hpp1215 double focal = 1.0, Point2d pp = Point2d(0, 0),
1278 double focal = 1.0, Point2d pp = Point2d(0, 0),
/external/opencv3/doc/tutorials/viz/transformations/
Dtransformations.markdown29 - Get camera pose from camera position, camera focal point and y direction.
/external/opencv3/doc/tutorials/calib3d/camera_calibration/
Dcamera_calibration.markdown40 unknown parameters are \f$f_x\f$ and \f$f_y\f$ (camera focal lengths) and \f$(c_x, c_y)\f$ which ar…
41 centers expressed in pixels coordinates. If for both axes a common focal length is used with a given
42 …aspect ratio (usually 1), then \f$f_y=f_x*a\f$ and in the upper formula we will have a single focal
206 the focal length, assume zero tangential distortion or to fix the principal point.
/external/opencv3/modules/viz/src/
Dvizimpl.cpp451 Vec3d focal(camera.GetFocalPoint()); in getViewerPose() local
454 Vec3d z_axis = normalized(focal - pos); in getViewerPose()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp552 focals.push_back(cameras[i].focal); in main()
746 cameras[i].focal *= compose_work_aspect; in main()
/external/libexif/po/
Des.po1337 msgstr "Distancia focal"
1501 msgstr "Distancia focal"
1506 msgstr "Distancia focal"
1511 msgstr "Distancia focal"
1574 msgstr "Distancia focal"
1579 msgstr "Resolución X del plano focal"
1584 msgstr "Resolución X del plano focal"
3821 "The actual focal length of the lens, in mm. Conversion is not made to the "
3822 "focal length of a 35 mm film camera."
3824 "La distancia focal real de la lente, en mm. No se realiza la conversión a la "
[all …]
Dfr.po1580 msgstr "x-Résolution du plan focal"
1585 msgstr "x-Résolution du plan focal"
3695 "The actual focal length of the lens, in mm. Conversion is not made to the "
3696 "focal length of a 35 mm film camera."
3943 msgstr "x-Résolution du plan focal"
3948 "<FocalPlaneResolutionUnit> on the camera focal plane."
3951 "<FocalPlaneResolutionUnit> sur le plan focal de l'appareil."
3956 msgstr "x-Résolution du plan focal"
3961 "<FocalPlaneResolutionUnit> on the camera focal plane."
3964 "<FocalPlaneResolutionUnit> sur le plan focal de l'appareil."
[all …]
Dpt_BR.po1291 msgstr "Comprimento focal"
1438 msgstr "Longa distância focal das lentes"
1442 msgstr "Curta distância focal das lentes"
1446 msgstr "Unidades focal por mm"
1502 msgstr "Tamanho do plano focal X"
1506 msgstr "Tamanho do plano focal Y"
3440 "The actual focal length of the lens, in mm. Conversion is not made to the "
3441 "focal length of a 35 mm film camera."
3684 "<FocalPlaneResolutionUnit> on the camera focal plane."
3694 "<FocalPlaneResolutionUnit> on the camera focal plane."
[all …]
/external/ceres-solver/docs/source/
Dtutorial.rst625 for translation, one for focal length and two for radial distortion.
659 const T& focal = camera[6];
660 T predicted_x = focal * distortion * xp;
661 T predicted_y = focal * distortion * yp;
/external/opencv3/doc/tutorials/highgui/
Dkinect_openni.markdown124 - CAP_PROP_OPENNI_FOCAL_LENGTH -- A focal length in pixels.
/external/opencv3/modules/calib3d/test/
Dtest_fundam.cpp1280 double focal(K.at<double>(0, 0)); in run_func() local
1285 …E = cv::findEssentialMat( _input0, _input1, focal, pp, method, 0.99, MAX(sigma*3, 0.0001), mask1 ); in run_func()
1296 recoverPose( E, _input0, _input1, R, t, focal, pp, mask2 ); in run_func()
/external/opencv3/doc/py_tutorials/py_calib3d/py_epipolar_geometry/
Dpy_epipolar_geometry.markdown63 images and normalize the point by dividing by the focal lengths, \f$F=E\f$). In simple words,

123