File: ovis_demo.cpp

package info (click to toggle)
opencv 4.10.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 282,092 kB
  • sloc: cpp: 1,178,079; xml: 682,621; python: 49,092; lisp: 31,150; java: 25,469; ansic: 11,039; javascript: 6,085; sh: 1,214; cs: 601; perl: 494; objc: 210; makefile: 173
file content (58 lines) | stat: -rw-r--r-- 1,840 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <opencv2/calib3d.hpp>
#include <opencv2/videoio.hpp>

#include <opencv2/ovis.hpp>

#include <iostream>


#define KEY_ESCAPE 27

using namespace cv;

int main()
{
  Mat R;
  Vec3d t;

  const Size2i imsize(800, 600);
  const double focal_length = 800.0;

  //add some external resources
  ovis::addResourceLocation("packs/Sinbad.zip"); // shipped with Ogre

  //camera intrinsics
  Mat1d K = Mat1d::zeros(3, 3); // init empty matrix
  K.at<double>(0, 0) = focal_length; // f_x
  K.at<double>(1, 1) = focal_length; // f_y
  K.at<double>(0, 2) = 400; // t_x
  K.at<double>(1, 2) = 500; // t_y
  K.at<double>(2, 2) = 1; // f_z

  //observer scene
  Ptr<ovis::WindowScene> owin = ovis::createWindow(String("VR"), imsize);
  ovis::createGridMesh("ground", Size2i(10, 10), Size2i(10, 10));
  owin->createEntity("ground", "ground", Vec3f(1.57, 0, 0));
  owin->createCameraEntity("cam", K, imsize, 5);
  owin->createEntity("sinbad", "Sinbad.mesh", Vec3i(0, 0, 5), Vec3f(CV_PI/2.0, 0.0, 0.0)); // externally defined mesh
  owin->createLightEntity("sun", Vec3i(0, 0, -100));

  // setup and play idle animation
  owin->setEntityProperty("sinbad", ovis::EntityProperty::ENTITY_ANIMBLEND_MODE, Scalar(1)); // 1 = cumulative
  owin->playEntityAnimation("sinbad", "IdleBase");
  owin->playEntityAnimation("sinbad", "IdleTop");

  //interaction scene
  Ptr<ovis::WindowScene> iwin = ovis::createWindow(String("AR"), imsize, ovis::SCENE_SEPARATE | ovis::SCENE_INTERACTIVE);
  iwin->createEntity("sinbad", "Sinbad.mesh", Vec3i(0, -5, 0), Vec3f(CV_PI, 0.0, 0.0));
  iwin->createLightEntity("sun", Vec3i(0, 0, -100));
  iwin->setCameraIntrinsics(K, imsize);

  std::cout << "Press ESCAPE to exit demo" << std::endl;
  while (ovis::waitKey(1) != KEY_ESCAPE) {
      iwin->getCameraPose(R, t);
      owin->setEntityPose("cam", t, R);
  }

  return 1;
}