/external/opencv3/modules/viz/src/ |
vizimpl.cpp | 191 void cv::viz::Viz3d::VizImpl::showWidget(const String &id, const Widget &widget, const Affine3d &pose) 204 // If the actor is 3D, apply pose 205 vtkSmartPointer<vtkMatrix4x4> matrix = vtkmatrix(pose.matrix); 243 void cv::viz::Viz3d::VizImpl::setWidgetPose(const String &id, const Affine3d &pose) 252 vtkSmartPointer<vtkMatrix4x4> matrix = vtkmatrix(pose.matrix); 258 void cv::viz::Viz3d::VizImpl::updateWidgetPose(const String &id, const Affine3d &pose) 270 setWidgetPose(id, pose); 273 Affine3d updated_pose = pose * Affine3d(*matrix->Element); 421 void cv::viz::Viz3d::VizImpl::setViewerPose(const Affine3d &pose) 426 cv::Vec3d pos_vec = pose.translation() [all...] |
widget.cpp | 236 void cv::viz::Widget3D::setPose(const Affine3d &pose) 241 vtkSmartPointer<vtkMatrix4x4> matrix = vtkmatrix(pose.matrix); 246 void cv::viz::Widget3D::updatePose(const Affine3d &pose) 254 setPose(pose); 258 Affine3d updated_pose = pose * Affine3d(*matrix->Element);
|
precomp.hpp | 309 static vtkSmartPointer<vtkPolyData> TransformPolydata(vtkSmartPointer<vtkAlgorithmOutput> algorithm_output_port, const Affine3d& pose) 312 transform->SetMatrix(vtkmatrix(pose.matrix)); 321 static vtkSmartPointer<vtkPolyData> TransformPolydata(vtkSmartPointer<vtkPolyData> polydata, const Affine3d& pose) 324 transform->SetMatrix(vtkmatrix(pose.matrix));
|
clouds.cpp | 227 void cv::viz::WCloudCollection::addCloud(InputArray cloud, InputArray colors, const Affine3d &pose) 232 vtkSmartPointer<vtkPolyData> polydata = VtkUtils::TransformPolydata(source->GetOutputPort(), pose); 244 void cv::viz::WCloudCollection::addCloud(InputArray cloud, const Color &color, const Affine3d &pose) 246 addCloud(cloud, Mat(cloud.size(), CV_8UC3, color), pose); 483 void cv::viz::WWidgetMerger::addWidget(const Widget3D& widget, const Affine3d &pose) 497 VtkUtils::AddInputData(append_filter, VtkUtils::TransformPolydata(widget_mapper->GetInput(), pose));
|
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/ |
main_registration.cpp | 162 /** COMPUTE CAMERA POSE **/ 164 cout << "COMPUTING POSE ..." << endl; 170 // Estimate pose given the registered points
|
PnPProblem.cpp | 108 // Estimate the pose given a list of 2D/3D correspondences and the method to use 119 // Pose estimation 133 // Estimate the pose given a list of 2D/3D correspondences with RANSAC and the method to use 158 // Given the mesh, backproject the 3D points to 2D to verify the pose estimation 173 // Backproject a 3D point to 2D using the estimated pose parameters
|
main_detection.cpp | 228 // -- Step 3: Estimate the pose using RANSAC approach 282 // -- Step X: Draw pose 286 drawObjectMesh(frame_vis, &mesh, &pnp_detection, green); // draw current pose 290 drawObjectMesh(frame_vis, &mesh, &pnp_detection_est, yellow); // draw estimated pose
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/ |
btSoftBodyData.h | 94 float m_poseMatch; // Pose matching coefficient [0,1] 105 float m_maxVolume; // Maximum volume ratio for pose
|
btSoftBody.h | 305 /* Pose */ 306 struct Pose 574 btScalar kMT; // Pose matching coefficient [0,1] 585 btScalar maxvolume; // Maximum volume ratio for pose 652 Pose m_pose; // Pose 824 /* Set current state as pose */
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/ |
NodePart.java | 34 /** Mapping to each bone (node) and the inverse transform of the bind pose. Will be used to fill the {@link #bones} array. May
37 /** The current transformation (relative to the bind pose) of each bone, may be null. When the part is skinned, this will be
|
/frameworks/base/media/java/android/media/ |
FaceDetector.java | 69 * Returns the face's pose. That is, the rotations around either 77 public float pose(int euler) { method in class:FaceDetector.Face
|
/external/ceres-solver/docs/source/ |
index.rst | 31 * Estimate the pose of `Street View`_ cars, aircrafts, and satellites.
|
/external/ceres-solver/examples/ |
bal_problem.h | 61 // Perturb the camera pose and the geometry with random normal
|
/external/opencv3/doc/py_tutorials/py_calib3d/py_pose/ |
py_pose.markdown | 0 Pose Estimation {#tutorial_py_pose} 15 information to calculate its pose, or how the object is situated in space, like how it is rotated,
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/ |
SoftbodyJNI.java | 305 public final static native void btSoftBody_Pose_bvolume_set(long jarg1, btSoftBody.Pose jarg1_, boolean jarg2); 306 public final static native boolean btSoftBody_Pose_bvolume_get(long jarg1, btSoftBody.Pose jarg1_); 307 public final static native void btSoftBody_Pose_bframe_set(long jarg1, btSoftBody.Pose jarg1_, boolean jarg2); 308 public final static native boolean btSoftBody_Pose_bframe_get(long jarg1, btSoftBody.Pose jarg1_); 309 public final static native void btSoftBody_Pose_volume_set(long jarg1, btSoftBody.Pose jarg1_, float jarg2); 310 public final static native float btSoftBody_Pose_volume_get(long jarg1, btSoftBody.Pose jarg1_); 311 public final static native void btSoftBody_Pose_pos_set(long jarg1, btSoftBody.Pose jarg1_, long jarg2, btVector3Array jarg2_); 312 public final static native long btSoftBody_Pose_pos_get(long jarg1, btSoftBody.Pose jarg1_); 313 public final static native void btSoftBody_Pose_wgh_set(long jarg1, btSoftBody.Pose jarg1_, long jarg2, btScalarArray jarg2_); 314 public final static native long btSoftBody_Pose_wgh_get(long jarg1, btSoftBody.Pose jarg1_) [all...] |
btSoftBody.java | [all...] |
/external/opencv3/modules/calib3d/include/opencv2/calib3d/ |
calib3d_c.h | 58 * Camera Calibration, Pose Estimation and Stereo * 67 /* Runs POSIT (POSe from ITeration) algorithm for determining 3d position of 97 CV_EPNP = 1, // F.Moreno-Noguer, V.Lepetit and P.Fua "EPnP: Efficient Perspective-n-Point Camera Pose Estimation"
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/ |
softbody_wrap.cpp | [all...] |
/external/ceres-solver/scripts/ |
ceres-solver.spec | 51 vehicle pose in Google Street View.
|
/external/compiler-rt/lib/builtins/ |
fp_extend_impl.inc | 24 // are available on the target platform; this may pose a problem when trying
|
fp_trunc_impl.inc | 27 // are available on the target platform; this may pose a problem when trying
|
/external/opencv3/modules/calib3d/src/ |
upnp.h | 44 * Exhaustive Linearization for Robust Camera Pose and Focal Length Estimation.
|
/external/clang/www/ |
get_involved.html | 78 (particularly language extensions) pose a long-term maintenance burden
|
/external/llvm/docs/ |
Lexicon.rst | 79 derived pointers pose an additional hazard that they may be invalidated at
|
/external/selinux/policycoreutils/audit2allow/ |
audit2allow.1 | 108 ensure that the operations being permitted do not pose a security
|