Visual Servoing Platform  version 3.6.1 under development (2024-07-27)
vpAfma6.h
1 /****************************************************************************
2  *
3  * ViSP, open source Visual Servoing Platform software.
4  * Copyright (C) 2005 - 2023 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * See the file LICENSE.txt at the root directory of this source
11  * distribution for additional information about the GNU GPL.
12  *
13  * For using ViSP with software that can not be combined with the GNU
14  * GPL, please contact Inria about acquiring a ViSP Professional
15  * Edition License.
16  *
17  * See https://visp.inria.fr for more information.
18  *
19  * This software was developed at:
20  * Inria Rennes - Bretagne Atlantique
21  * Campus Universitaire de Beaulieu
22  * 35042 Rennes Cedex
23  * France
24  *
25  * If you have questions regarding the use of this file, please contact
26  * Inria at visp@inria.fr
27  *
28  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
29  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
30  *
31  * Description:
32  * Interface for the Irisa's Afma6 robot.
33  *
34 *****************************************************************************/
35 
44 #ifndef _vpAfma6_h
45 #define _vpAfma6_h
46 
47 #include <visp3/core/vpConfig.h>
48 
49 #include <visp3/core/vpCameraParameters.h>
50 #include <visp3/core/vpHomogeneousMatrix.h>
51 #include <visp3/core/vpImage.h>
52 #include <visp3/core/vpRGBa.h>
53 #include <visp3/core/vpVelocityTwistMatrix.h>
54 
77 class VISP_EXPORT vpAfma6
78 {
79 public:
80 #ifdef VISP_HAVE_AFMA6_DATA
84  static const std::string CONST_AFMA6_FILENAME;
86  static const std::string CONST_EMC_CCMOP_WITH_DISTORTION_FILENAME;
95  static const std::string CONST_CAMERA_AFMA6_FILENAME;
96 #endif
101  static const char *const CONST_CCMOP_CAMERA_NAME;
106  static const char *const CONST_GRIPPER_CAMERA_NAME;
111  static const char *const CONST_VACUUM_CAMERA_NAME;
116  static const char *const CONST_GENERIC_CAMERA_NAME;
117 
122  static const char *const CONST_INTEL_D435_CAMERA_NAME;
123 
125  typedef enum
126  {
132  TOOL_CUSTOM
133  } vpAfma6ToolType;
134 
137 
138 public:
139  vpAfma6();
141  virtual ~vpAfma6() { };
142 
145  void init(void);
146  void init(const std::string &camera_extrinsic_parameters);
147  void init(const std::string &camera_extrinsic_parameters, const std::string &camera_intrinsic_parameters);
148  void init(vpAfma6::vpAfma6ToolType tool, const std::string &filename);
149  void init(vpAfma6::vpAfma6ToolType tool, const vpHomogeneousMatrix &eMc_);
150  void
151  init(vpAfma6::vpAfma6ToolType tool,
153 
154  vpHomogeneousMatrix getForwardKinematics(const vpColVector &q) const;
155  int getInverseKinematics(const vpHomogeneousMatrix &fMc, vpColVector &q, const bool &nearest = true,
156  const bool &verbose = false) const;
157 
158  vpHomogeneousMatrix get_eMc() const;
159  vpHomogeneousMatrix get_fMc(const vpColVector &q) const;
160  void get_fMe(const vpColVector &q, vpHomogeneousMatrix &fMe) const;
161  void get_fMc(const vpColVector &q, vpHomogeneousMatrix &fMc) const;
162 
163  void get_cMe(vpHomogeneousMatrix &cMe) const;
164  void get_cVe(vpVelocityTwistMatrix &cVe) const;
165  void get_eJe(const vpColVector &q, vpMatrix &eJe) const;
166  void get_fJe(const vpColVector &q, vpMatrix &fJe) const;
167 
169  vpAfma6ToolType getToolType() const { return tool_current; };
172 
173  void getCameraParameters(vpCameraParameters &cam, const unsigned int &image_width,
174  const unsigned int &image_height) const;
175  void getCameraParameters(vpCameraParameters &cam, const vpImage<unsigned char> &I) const;
176  void getCameraParameters(vpCameraParameters &cam, const vpImage<vpRGBa> &I) const;
177 
178  vpColVector getJointMin() const;
179  vpColVector getJointMax() const;
180  double getCoupl56() const;
181  double getLong56() const;
182 
183  void parseConfigFile(const std::string &filename);
184 
185  virtual void set_eMc(const vpHomogeneousMatrix &eMc);
187 
188  friend VISP_EXPORT std::ostream &operator<<(std::ostream &os, const vpAfma6 &afma6);
189 
190 protected:
194  void setToolType(vpAfma6::vpAfma6ToolType tool) { tool_current = tool; };
196 
197 public:
198  static const unsigned int njoint;
199 
200 protected:
201  double _coupl_56; // coupling between join 5 and 6
202  double _long_56; // distance between join 5 and 6
203  double _joint_max[6]; // Maximal value of the joints
204  double _joint_min[6]; // Minimal value of the joints
205  // Minimal representation of _eMc
207  vpRxyzVector _erc; // radian
208 
209  vpHomogeneousMatrix _eMc; // Camera extrinsic parameters: effector to camera
210 
211 protected:
214  // Used projection model
216 };
217 END_VISP_NAMESPACE
218 #endif
Modelization of Irisa's gantry robot named Afma6.
Definition: vpAfma6.h:78
static const std::string CONST_EMC_GENERIC_WITHOUT_DISTORTION_FILENAME
Definition: vpAfma6.h:93
static const char *const CONST_CCMOP_CAMERA_NAME
Definition: vpAfma6.h:101
static const std::string CONST_EMC_CCMOP_WITH_DISTORTION_FILENAME
Definition: vpAfma6.h:86
static const std::string CONST_EMC_CCMOP_WITHOUT_DISTORTION_FILENAME
Definition: vpAfma6.h:85
static const std::string CONST_EMC_INTEL_D435_WITHOUT_DISTORTION_FILENAME
Definition: vpAfma6.h:91
static const std::string CONST_CAMERA_AFMA6_FILENAME
Definition: vpAfma6.h:95
static const unsigned int njoint
Number of joint.
Definition: vpAfma6.h:194
vpRxyzVector _erc
Definition: vpAfma6.h:207
static const char *const CONST_VACUUM_CAMERA_NAME
Definition: vpAfma6.h:111
static const std::string CONST_EMC_GRIPPER_WITHOUT_DISTORTION_FILENAME
Definition: vpAfma6.h:87
void setToolType(vpAfma6::vpAfma6ToolType tool)
Set the current tool type.
Definition: vpAfma6.h:194
vpAfma6ToolType getToolType() const
Get the current tool type.
Definition: vpAfma6.h:169
vpCameraParameters::vpCameraParametersProjType getCameraParametersProjType() const
Get the current camera model projection type.
Definition: vpAfma6.h:171
double _coupl_56
Definition: vpAfma6.h:201
static const std::string CONST_EMC_INTEL_D435_WITH_DISTORTION_FILENAME
Definition: vpAfma6.h:92
static const char *const CONST_INTEL_D435_CAMERA_NAME
Definition: vpAfma6.h:122
virtual ~vpAfma6()
Definition: vpAfma6.h:141
static const vpAfma6ToolType defaultTool
Default tool attached to the robot end effector.
Definition: vpAfma6.h:136
static const char *const CONST_GRIPPER_CAMERA_NAME
Definition: vpAfma6.h:106
static const std::string CONST_EMC_GRIPPER_WITH_DISTORTION_FILENAME
Definition: vpAfma6.h:88
vpHomogeneousMatrix _eMc
Definition: vpAfma6.h:209
double _long_56
Definition: vpAfma6.h:202
vpTranslationVector _etc
Definition: vpAfma6.h:206
vpAfma6ToolType tool_current
Current tool in use.
Definition: vpAfma6.h:213
static const char *const CONST_GENERIC_CAMERA_NAME
Definition: vpAfma6.h:116
vpCameraParameters::vpCameraParametersProjType projModel
Definition: vpAfma6.h:215
static const std::string CONST_EMC_VACUUM_WITHOUT_DISTORTION_FILENAME
Definition: vpAfma6.h:89
static const std::string CONST_EMC_GENERIC_WITH_DISTORTION_FILENAME
Definition: vpAfma6.h:94
static const std::string CONST_EMC_VACUUM_WITH_DISTORTION_FILENAME
Definition: vpAfma6.h:90
static const std::string CONST_AFMA6_FILENAME
Definition: vpAfma6.h:84
vpAfma6ToolType
List of possible tools that can be attached to the robot end-effector.
Definition: vpAfma6.h:126
@ TOOL_CCMOP
Definition: vpAfma6.h:127
@ TOOL_GENERIC_CAMERA
Definition: vpAfma6.h:130
@ TOOL_VACUUM
Definition: vpAfma6.h:129
@ TOOL_INTEL_D435_CAMERA
Definition: vpAfma6.h:131
@ TOOL_GRIPPER
Definition: vpAfma6.h:128
Generic class defining intrinsic camera parameters.
@ perspectiveProjWithoutDistortion
Perspective projection without distortion model.
Implementation of column vector and the associated operations.
Definition: vpColVector.h:191
Implementation of an homogeneous matrix and operations on such kind of matrices.
Implementation of a matrix and operations on matrices.
Definition: vpMatrix.h:169
Implementation of a rotation vector as Euler angle minimal representation.
Definition: vpRxyzVector.h:183
Class that consider the case of a translation vector.