HomeSort by relevance Sort by last modified time
    Searched refs:pose (Results 1 - 25 of 42) sorted by null

1 2

  /external/opencv3/modules/viz/test/
test_tutorial2.cpp 41 /// Construct pose
42 Affine3d pose(rot_vec, Vec3d(translation, translation, translation));
44 myWindow.setWidgetPose("Cube Widget", pose);
tests_simple.cpp 52 Affine3d pose = Affine3d().rotate(Vec3d(0, 0.8, 0)); local
57 viz.showWidget("dragon", WCloud(dragon_cloud, Color::bluberry()), pose);
70 Affine3d pose = Affine3d().rotate(Vec3d(0, 0.8, 0)); local
75 viz.showWidget("dragon", WCloud(dragon_cloud, colors), pose);
89 Affine3d pose = Affine3d().rotate(Vec3d(0, 0.8, 0)); local
93 viz.showWidget("dragon", WCloud(dragon_cloud), pose);
135 Affine3d pose = Affine3d().rotate(Vec3d(0, 0.8, 0)); local
139 viz.showWidget("mesh", WMesh(mesh), pose);
149 Affine3d pose = Affine3d().rotate(Vec3d(0, 0.8, 0)); local
153 viz.showWidget("mesh", WMesh(mesh), pose);
241 Affine3d pose = Affine3d().rotate(Vec3d(0, 0.8, 0)); local
256 Affine3d pose = Affine3d().rotate(Vec3d(0, 0.8, 0)); local
322 Vec3d pose = 5 * Vec3d(sin(3.14 + 2.7 + i*60 * CV_PI\/180), 0.4 - i*0.3, cos(3.14 + 2.7 + i*60 * CV_PI\/180)); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
FaceDetector_FaceTest.java 66 face.pose(FaceDetector.Face.EULER_X);
67 face.pose(FaceDetector.Face.EULER_Y);
68 face.pose(FaceDetector.Face.EULER_Z);
72 face.pose(ErrorEuler);
  /external/opencv3/modules/viz/include/opencv2/viz/
viz3d.hpp 86 @param pose Pose of the widget.
88 void showWidget(const String &id, const Widget &widget, const Affine3d &pose = Affine3d::Identity());
116 /** @brief Sets pose of a widget in the window.
118 @param id The id of the widget whose pose will be set. @param pose The new pose of the widget.
120 void setWidgetPose(const String &id, const Affine3d &pose);
122 /** @brief Updates pose of a widget in the window by pre-multiplying its current pose
    [all...]
vizcore.hpp 72 /** @brief Constructs camera pose from position, focal_point and up_vector (see gluLookAt() for more
79 This function returns pose of the camera in global coordinate frame.
156 CV_EXPORTS bool readPose(const String& file, Affine3d& pose, const String& tag = "pose");
157 CV_EXPORTS void writePose(const String& file, const Affine3d& pose, const String& tag = "pose");
160 CV_EXPORTS void writeTrajectory(InputArray traj, const String& files_format = "pose%05d.xml", int start = 0, const String& tag = "pose");
163 CV_EXPORTS void readTrajectory(OutputArray traj, const String& files_format = "pose%05d.xml", int start = 0, int end = INT_MAX, const String& tag = "pose");
    [all...]
widgets.hpp 183 /** @brief Sets pose of the widget.
185 @param pose The new pose of the widget.
187 void setPose(const Affine3d &pose);
188 /** @brief Updates pose of the widget by pre-multiplying its current pose.
190 @param pose The pose that the current pose of the widget will be pre-multiplied by.
192 void updatePose(const Affine3d &pose);
    [all...]
  /external/opencv3/modules/viz/src/
vizimpl.hpp 66 void showWidget(const String &id, const Widget &widget, const Affine3d &pose = Affine3d::Identity());
73 void setWidgetPose(const String &id, const Affine3d &pose);
74 void updateWidgetPose(const String &id, const Affine3d &pose);
86 void setViewerPose(const Affine3d &pose);
viz3d.cpp 112 void cv::viz::Viz3d::showWidget(const String &id, const Widget &widget, const Affine3d &pose) { impl_->showWidget(id, widget, pose); }
119 void cv::viz::Viz3d::setWidgetPose(const String &id, const Affine3d &pose) { impl_->setWidgetPose(id, pose); }
120 void cv::viz::Viz3d::updateWidgetPose(const String &id, const Affine3d &pose) { impl_->updateWidgetPose(id, pose); }
125 void cv::viz::Viz3d::setViewerPose(const Affine3d &pose) { impl_->setViewerPose(pose); }
vizcore.cpp 248 bool cv::viz::readPose(const String& file, Affine3d& pose, const String& tag)
254 Mat hdr(pose.matrix, false);
256 if (hdr.empty() || hdr.cols != pose.matrix.cols || hdr.rows != pose.matrix.rows)
259 hdr.convertTo(pose.matrix, CV_64F);
263 void cv::viz::writePose(const String& file, const Affine3d& pose, const String& tag)
266 fs << tag << Mat(pose.matrix, false);
304 Mat pose = v[i]; local
305 CV_Assert(pose.type() == CV_32FC(16) || pose.type() == CV_64FC(16))
    [all...]
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));
shapes.cpp 708 Affine3d pose = makeTransformToGlobal(u, v, n, center); local
711 image3d.applyTransform(pose);
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/viz/
widget_pose.cpp 3 * @brief Setting pose of a widget
70 /// Construct pose
71 Affine3f pose(rot_mat, Vec3f(translation, translation, translation));
73 myWindow.setWidgetPose("Cube Widget", pose);
  /hardware/qcom/msm8994/kernel-headers/media/
msm_fd.h 39 __u32 pose; member in struct:msm_fd_face_data
  /hardware/qcom/msm8994/original-kernel-headers/media/
msm_fd.h 30 * enum msm_fd_pose - Face pose.
42 * @pose: refer to enum msm_fd_pose.
49 __u32 pose; member in struct:msm_fd_face_data
  /hardware/qcom/msm8996/kernel-headers/media/
msm_fd.h 40 __u32 pose; member in struct:msm_fd_face_data
  /hardware/qcom/msm8996/original-kernel-headers/media/
msm_fd.h 20 * enum msm_fd_pose - Face pose.
32 * @pose: refer to enum msm_fd_pose.
39 __u32 pose; member in struct:msm_fd_face_data
  /hardware/qcom/msm8x84/kernel-headers/media/
msm_fd.h 39 __u32 pose; member in struct:msm_fd_face_data
  /hardware/qcom/msm8x84/original-kernel-headers/media/
msm_fd.h 30 * enum msm_fd_pose - Face pose.
42 * @pose: refer to enum msm_fd_pose.
49 __u32 pose; member in struct:msm_fd_face_data
  /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/scripts/
ceres-solver.spec 51 vehicle pose in Google Street View.
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBody.cpp 2350 btSoftBody::Pose& pose=m_pose; local
    [all...]
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 

Completed in 633 milliseconds

1 2