Visual Servoing Platform  version 3.0.1
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
vpViper650.h
1 /****************************************************************************
2  *
3  * This file is part of the ViSP software.
4  * Copyright (C) 2005 - 2017 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * ("GPL") version 2 as published by the Free Software Foundation.
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 http://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  * Interface for the ADEPT Viper 650 robot.
32  *
33  * Authors:
34  * Fabien Spindler
35  *
36  *****************************************************************************/
37 
38 #ifndef vpViper650_h
39 #define vpViper650_h
40 
99 #include <visp3/robot/vpViper.h>
100 
101 
102 class VISP_EXPORT vpViper650: public vpViper
103 {
104  public:
105 #ifdef VISP_HAVE_VIPER650_DATA
106  static const std::string CONST_EMC_MARLIN_F033C_WITHOUT_DISTORTION_FILENAME;
116  static const std::string CONST_CAMERA_FILENAME;
117 #endif
118 
121  static const char * const CONST_MARLIN_F033C_CAMERA_NAME;
122  static const char * const CONST_PTGREY_FLEA2_CAMERA_NAME;
123  static const char * const CONST_SCHUNK_GRIPPER_CAMERA_NAME;
124  static const char * const CONST_GENERIC_CAMERA_NAME;
125 
127  typedef enum {
132  TOOL_CUSTOM
133  } vpToolType;
134 
136  static const vpToolType defaultTool;
137 
138  vpViper650();
139  virtual ~vpViper650() {};
140 
143  void init (void);
144  void init(const std::string &camera_extrinsic_parameters);
145  void init(vpViper650::vpToolType tool,
148  void init(vpViper650::vpToolType tool, const std::string &filename);
149  void init(vpViper650::vpToolType tool, const vpHomogeneousMatrix &eMc_);
150 
151 
154  return projModel;
155  };
156 
157  void getCameraParameters(vpCameraParameters &cam,
158  const unsigned int &image_width,
159  const unsigned int &image_height) const;
160  void getCameraParameters(vpCameraParameters &cam,
161  const vpImage<unsigned char> &I) const;
162  void getCameraParameters(vpCameraParameters &cam, const vpImage<vpRGBa> &I) const;
163 
166  return tool_current;
167  };
168 
169  void parseConfigFile (const std::string &filename);
171 
172  protected:
175  void setToolType(vpViper650::vpToolType tool){
177  tool_current = tool;
178  };
180 
181  protected:
183  vpToolType tool_current;
184  // Used projection model
186 };
187 
188 #endif
189 
static const std::string CONST_EMC_GENERIC_WITH_DISTORTION_FILENAME
Definition: vpViper650.h:115
Modelisation of the ADEPT Viper robot.
Definition: vpViper.h:112
Perspective projection without distortion model.
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpCameraParameters::vpCameraParametersProjType projModel
Definition: vpViper650.h:185
static const std::string CONST_EMC_GENERIC_WITHOUT_DISTORTION_FILENAME
Definition: vpViper650.h:114
static const std::string CONST_EMC_PTGREY_FLEA2_WITHOUT_DISTORTION_FILENAME
Definition: vpViper650.h:110
vpToolType getToolType() const
Get the current tool type.
Definition: vpViper650.h:165
static const std::string CONST_EMC_PTGREY_FLEA2_WITH_DISTORTION_FILENAME
Definition: vpViper650.h:111
static const std::string CONST_EMC_SCHUNK_GRIPPER_WITH_DISTORTION_FILENAME
Definition: vpViper650.h:113
virtual ~vpViper650()
Definition: vpViper650.h:139
static const vpToolType defaultTool
Default tool attached to the robot end effector.
Definition: vpViper650.h:136
Generic class defining intrinsic camera parameters.
Modelisation of the ADEPT Viper 650 robot.
Definition: vpViper650.h:102
static const char *const CONST_MARLIN_F033C_CAMERA_NAME
Definition: vpViper650.h:121
vpToolType
List of possible tools that can be attached to the robot end-effector.
Definition: vpViper650.h:127
static const char *const CONST_PTGREY_FLEA2_CAMERA_NAME
Definition: vpViper650.h:122
vpCameraParameters::vpCameraParametersProjType getCameraParametersProjType() const
Get the current camera model projection type.
Definition: vpViper650.h:153
static const char *const CONST_SCHUNK_GRIPPER_CAMERA_NAME
Definition: vpViper650.h:123
static const std::string CONST_EMC_MARLIN_F033C_WITH_DISTORTION_FILENAME
Definition: vpViper650.h:109
static const char *const CONST_GENERIC_CAMERA_NAME
Definition: vpViper650.h:124
static const std::string CONST_EMC_SCHUNK_GRIPPER_WITHOUT_DISTORTION_FILENAME
Definition: vpViper650.h:112
static const std::string CONST_CAMERA_FILENAME
Definition: vpViper650.h:116