Visual Servoing Platform  version 3.6.1 under development (2024-11-15)
testViper850.cpp
1 /*
2  * ViSP, open source Visual Servoing Platform software.
3  * Copyright (C) 2005 - 2024 by Inria. All rights reserved.
4  *
5  * This software is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * See the file LICENSE.txt at the root directory of this source
10  * distribution for additional information about the GNU GPL.
11  *
12  * For using ViSP with software that can not be combined with the GNU
13  * GPL, please contact Inria about acquiring a ViSP Professional
14  * Edition License.
15  *
16  * See https://visp.inria.fr for more information.
17  *
18  * This software was developed at:
19  * Inria Rennes - Bretagne Atlantique
20  * Campus Universitaire de Beaulieu
21  * 35042 Rennes Cedex
22  * France
23  *
24  * If you have questions regarding the use of this file, please contact
25  * Inria at visp@inria.fr
26  *
27  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29  *
30  * Description:
31  * Test for Viper850 6 dof robot.
32  */
33 
41 #include <visp3/core/vpConfig.h>
42 #include <visp3/core/vpDebug.h>
43 #include <visp3/robot/vpViper850.h>
44 
45 #include <iostream>
46 
47 int main()
48 {
49 #ifdef ENABLE_VISP_NAMESPACE
50  using namespace VISP_NAMESPACE_NAME;
51 #endif
52  try {
53 
54  std::cout << "a test for vpViper850 class..." << std::endl;
55 
56  vpViper850 viper850;
58 
59  std::cout << "-- Default settings for Viper 850 ---" << std::endl;
60  std::cout << viper850 << std::endl;
61  viper850.getCameraParameters(cam, 640, 480);
62  std::cout << cam << std::endl;
63 
64  std::cout << "-- Settings associated to the Marlin F033C camera without "
65  "distortion ---"
66  << std::endl;
68 
69  std::cout << viper850 << std::endl;
70  viper850.getCameraParameters(cam, 640, 480);
71  std::cout << cam << std::endl;
72 
73  std::cout << "-- Settings associated to the Marlin F033C camera with "
74  "distortion ------"
75  << std::endl;
77  std::cout << viper850 << std::endl;
78  viper850.getCameraParameters(cam, 640, 480);
79  std::cout << cam << std::endl;
80 
81  vpColVector qmotor(6);
82 #if 1
83  qmotor[0] = vpMath::rad(30);
84  qmotor[1] = vpMath::rad(-100);
85  qmotor[2] = vpMath::rad(180);
86  qmotor[3] = vpMath::rad(20);
87  qmotor[4] = vpMath::rad(90);
88  qmotor[5] = vpMath::rad(13.37);
89 #else
90  qmotor[0] = vpMath::rad(0);
91  qmotor[1] = vpMath::rad(0 - 90);
92  qmotor[2] = vpMath::rad(0);
93  qmotor[3] = vpMath::rad(0);
94  qmotor[4] = vpMath::rad(0);
95  qmotor[5] = vpMath::rad(0);
96 #endif
98  viper850.get_fMe(qmotor, fMe);
99 
101  fMe.extract(t);
103  fMe.extract(R);
104  vpRzyzVector r;
105  r.buildFrom(R);
106 
107  std::cout << "fMe:" << std::endl
108  << "\tt: " << t.t() << std::endl
109  << "\trzyz (rad): " << r.t() << std::endl
110  << "\trzyz (deg): " << vpMath::deg(r[0]) << " " << vpMath::deg(r[1]) << " " << vpMath::deg(r[2])
111  << std::endl;
112 
113  return EXIT_SUCCESS;
114  }
115  catch (const vpException &e) {
116  std::cout << "Catch an exception: " << e.getStringMessage() << std::endl;
117  return EXIT_FAILURE;
118  }
119 }
Generic class defining intrinsic camera parameters.
@ perspectiveProjWithDistortion
Perspective projection with distortion model.
Implementation of column vector and the associated operations.
Definition: vpColVector.h:191
error that can be emitted by ViSP classes.
Definition: vpException.h:60
const std::string & getStringMessage() const
Definition: vpException.cpp:67
Implementation of an homogeneous matrix and operations on such kind of matrices.
void extract(vpRotationMatrix &R) const
static double rad(double deg)
Definition: vpMath.h:129
static double deg(double rad)
Definition: vpMath.h:119
Implementation of a rotation matrix and operations on such kind of matrices.
vpRowVector t() const
Implementation of a rotation vector as Euler angle minimal representation.
Definition: vpRzyzVector.h:182
vpRzyzVector & buildFrom(const vpRotationMatrix &R)
Class that consider the case of a translation vector.
vpRowVector t() const
Modelization of the ADEPT Viper 850 robot.
Definition: vpViper850.h:95
void getCameraParameters(vpCameraParameters &cam, const unsigned int &image_width, const unsigned int &image_height) const
Definition: vpViper850.cpp:561
@ TOOL_MARLIN_F033C_CAMERA
Definition: vpViper850.h:121
void init(void)
Definition: vpViper850.cpp:134
void get_fMe(const vpColVector &q, vpHomogeneousMatrix &fMe) const
Definition: vpViper.cpp:724