60#include <visp3/core/vpConfig.h>
62#if defined(VISP_HAVE_VIPER650) && defined(VISP_HAVE_REALSENSE2) && defined(VISP_HAVE_X11)
64#include <visp3/blob/vpDot2.h>
65#include <visp3/core/vpHomogeneousMatrix.h>
66#include <visp3/core/vpIoTools.h>
67#include <visp3/core/vpPoint.h>
68#include <visp3/gui/vpDisplayFactory.h>
69#include <visp3/robot/vpRobotViper650.h>
70#include <visp3/sensor/vpRealSense2.h>
71#include <visp3/vision/vpPose.h>
72#include <visp3/visual_features/vpFeatureBuilder.h>
73#include <visp3/visual_features/vpFeaturePoint.h>
74#include <visp3/vs/vpServo.h>
75#include <visp3/vs/vpServoDisplay.h>
79#ifdef ENABLE_VISP_NAMESPACE
101void compute_pose(std::vector<vpPoint> &point, std::vector<vpDot2> &dot,
vpCameraParameters cam,
106 for (
size_t i = 0;
i < point.size();
i++) {
133 std::string username;
138 std::string logdirname;
139 logdirname =
"/tmp/" + username;
148 std::cerr << std::endl <<
"ERROR:" << std::endl;
149 std::cerr <<
" Cannot create " << logdirname << std::endl;
153 std::string logfilename;
154 logfilename = logdirname +
"/log.dat";
157 std::ofstream flog(logfilename.c_str());
159#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
160 std::shared_ptr<vpDisplay> display;
172 std::cout <<
"Camera extrinsic parameters (eMc): \n" << eMc << std::endl;
181 config.disable_stream(RS2_STREAM_DEPTH);
182 config.disable_stream(RS2_STREAM_INFRARED);
183 config.enable_stream(RS2_STREAM_COLOR, 640, 480, RS2_FORMAT_RGBA8, 30);
188 std::cout <<
"Camera intrinsic parameters: \n" <<
cam << std::endl;
192#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
200 std::vector<vpDot2> dot(4);
202 std::cout <<
"Click on the 4 dots clockwise starting from upper/left dot..." << std::endl;
204 for (
size_t i = 0;
i < dot.size();
i++) {
205 dot[
i].setGraphics(
true);
206 dot[
i].initTracking(I);
214 for (
size_t i = 0;
i < dot.size();
i++)
219 std::vector<vpPoint> point(4);
220 point[0].setWorldCoordinates(-L, -L, 0);
221 point[1].setWorldCoordinates(L, -L, 0);
222 point[2].setWorldCoordinates(L, L, 0);
223 point[3].setWorldCoordinates(-L, L, 0);
227 compute_pose(point, dot, cam, cMo,
true);
228 std::cout <<
"Initial camera pose (cMo): \n" <<
cMo << std::endl;
237 for (
int i = 0;
i < 4;
i++) {
239 point[
i].changeFrame(cMo_d, cP);
240 point[
i].projection(cP, p);
248 for (
size_t i = 0;
i < dot.size();
i++)
249 task.addFeature(p[i], pd[i]);
264 std::cout <<
"\nHit CTRL-C or click in the image to stop the loop...\n" << std::flush;
274 for (
size_t i = 0;
i < dot.size();
i++) {
284 std::cout <<
"Error detected while tracking visual features.." << std::endl;
291 compute_pose(point, dot, cam, cMo,
false);
293 for (
size_t i = 0;
i < dot.size();
i++) {
298 point[
i].changeFrame(cMo, cP);
315 flog <<
v[0] <<
" " <<
v[1] <<
" " <<
v[2] <<
" " <<
v[3] <<
" " <<
v[4] <<
" " <<
v[5] <<
" ";
325 flog << qvel[0] <<
" " << qvel[1] <<
" " << qvel[2] <<
" " << qvel[3] <<
" " << qvel[4] <<
" " << qvel[5] <<
" ";
335 flog << q[0] <<
" " << q[1] <<
" " << q[2] <<
" " << q[3] <<
" " << q[4] <<
" " << q[5] <<
" ";
340 flog <<
task.getError() << std::endl;
353 std::cout <<
"Display task information: " << std::endl;
356#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
357 if (display !=
nullptr) {
365 std::cout <<
"Catch an exception: " <<
e.getMessage() << std::endl;
366#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
367 if (display !=
nullptr) {
378 std::cout <<
"You do not have an Viper 650 robot connected to your computer..." << std::endl;
Generic class defining intrinsic camera parameters.
@ perspectiveProjWithDistortion
Perspective projection with distortion model.
Implementation of column vector and the associated operations.
static const vpColor blue
static const vpColor green
Class that defines generic functionalities for display.
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
error that can be emitted by ViSP classes.
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpDot &d)
Class that defines a 2D point visual feature which is composed by two parameters that are the cartes...
Implementation of an homogeneous matrix and operations on such kind of matrices.
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
Definition of the vpImage class member functions.
static void convertPoint(const vpCameraParameters &cam, const double &u, const double &v, double &x, double &y)
Class used for pose computation from N points (pose from point only). Some of the algorithms implemen...
void addPoint(const vpPoint &P)
@ DEMENTHON_LAGRANGE_VIRTUAL_VS
bool computePose(vpPoseMethodType method, vpHomogeneousMatrix &cMo, FuncCheckValidityPose func=nullptr)
vpCameraParameters getCameraParameters(const rs2_stream &stream, vpCameraParameters::vpCameraParametersProjType type=vpCameraParameters::perspectiveProjWithDistortion, int index=-1) const
void acquire(vpImage< unsigned char > &grey, double *ts=nullptr)
bool open(const rs2::config &cfg=rs2::config())
Control of Irisa's Viper S650 robot named Viper650.
@ STATE_VELOCITY_CONTROL
Initialize the velocity controller.
Implementation of a rotation matrix and operations on such kind of matrices.
static void display(const vpServo &s, const vpCameraParameters &cam, const vpImage< unsigned char > &I, vpColor currentColor=vpColor::green, vpColor desiredColor=vpColor::red, unsigned int thickness=1)
Class that consider the case of a translation vector.
std::shared_ptr< vpDisplay > createDisplay()
Return a smart pointer vpDisplay specialization if a GUI library is available or nullptr otherwise.
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.