/external/opencv3/modules/stitching/src/ |
D | camera.cpp | 48 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()
|
D | motion_estimators.cpp | 70 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()
|
D | stitcher.cpp | 247 cameras_[i].focal *= compose_work_aspect; in composePanorama() 512 focals.push_back(cameras_[i].focal); in estimateCameraParams()
|
/external/ceres-solver/examples/ |
D | snavely_reprojection_error.h | 73 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()
|
D | simple_bundle_adjuster.cc | 152 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/ |
D | SkTwoPointConicalGradient_gpu.cpp | 324 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/ |
D | camera.hpp | 65 double focal; // Focal length member
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | paint.c | 305 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/ |
D | system_test.cc | 448 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/ |
D | calib3d+Calib3d.java | 887 …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 …]
|
D | calib3d.cpp | 3127 …(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/ |
D | vtkVizInteractorStyle.cpp | 167 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/ |
D | py_depthmap.markdown | 26 …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/ |
D | calib3d.hpp | 1215 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/ |
D | transformations.markdown | 29 - Get camera pose from camera position, camera focal point and y direction.
|
/external/opencv3/doc/tutorials/calib3d/camera_calibration/ |
D | camera_calibration.markdown | 40 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/ |
D | vizimpl.cpp | 451 Vec3d focal(camera.GetFocalPoint()); in getViewerPose() local 454 Vec3d z_axis = normalized(focal - pos); in getViewerPose()
|
/external/opencv3/samples/cpp/ |
D | stitching_detailed.cpp | 552 focals.push_back(cameras[i].focal); in main() 746 cameras[i].focal *= compose_work_aspect; in main()
|
/external/libexif/po/ |
D | es.po | 1337 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 …]
|
D | fr.po | 1580 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 …]
|
D | pt_BR.po | 1291 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/ |
D | tutorial.rst | 625 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/ |
D | kinect_openni.markdown | 124 - CAP_PROP_OPENNI_FOCAL_LENGTH -- A focal length in pixels.
|
/external/opencv3/modules/calib3d/test/ |
D | test_fundam.cpp | 1280 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/ |
D | py_epipolar_geometry.markdown | 63 images and normalize the point by dividing by the focal lengths, \f$F=E\f$). In simple words,
|