Visual Servoing Platform  version 3.6.1 under development (2024-04-25)
testVirtuoseWithGlove.cpp

Test for reading the Virtuose's and Glove joint positions.

Usage: ./testVirtuoseWithGlove

/****************************************************************************
*
* ViSP, open source Visual Servoing Platform software.
* Copyright (C) 2005 - 2023 by Inria. All rights reserved.
*
* This software is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact Inria about acquiring a ViSP Professional
* Edition License.
*
* See https://visp.inria.fr for more information.
*
* This software was developed at:
* Inria Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
*
* If you have questions regarding the use of this file, please contact
* Inria at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Description:
* Test for Virtuose + Glove SDK wrapper.
*
*
*****************************************************************************/
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <vector>
#include <visp3/core/vpCameraParameters.h>
#include <visp3/core/vpImage.h>
#include <visp3/core/vpMeterPixelConversion.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayX.h>
#include <visp3/robot/vpVirtuose.h>
#if defined(VISP_HAVE_VIRTUOSE) && (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI))
int main()
{
int port = 53210;
std::string ip = "localhost";
std::vector<vpVirtuose> virtuose(4); // 0: virtuose, 1: thumb, 2: index, 3: middle
std::vector<vpHomogeneousMatrix> wMd(4);
// Position of the external camera with respect of the virtuose world frame
vpHomogeneousMatrix wMc(0.3, 0, 1.2, vpMath::rad(180), 0, 0);
// Open device
for (size_t device = 0; device < virtuose.size(); device++) {
std::cout << "Try to connect to " << ip << " port " << (port + device) << std::endl;
virtuose[device].setIpAddressAndPort(ip, port + static_cast<int>(device));
virtuose[device].init();
}
std::cout << "After init" << std::endl;
#if 0
// Get joint position
for (size_t device=0; device < virtuose.size(); device ++) {
std::cout << "Number of joints: " << virtuose[device].getJointsNumber()
<< " Joint position: " << virtuose[device].getArticularPosition().t() << std::endl
<< " Cartesian position: " << virtuose[device].getAvatarPosition().t() << std::endl;
// std::cout << "Joint velocity: " << virtuose.getArticularVelocity().t() << std::endl;
}
#endif
bool end = false;
vpImage<unsigned char> I(480, 640, 0);
#if defined(VISP_HAVE_X11)
vpDisplayX d(I);
#elif defined(VISP_HAVE_GDI)
#endif
while (!end) {
// Get joint position
for (size_t device = 0; device < virtuose.size(); device++) {
vpPoseVector wpd = virtuose[device].getAvatarPosition();
std::cout << "Device #" << device << " has position: " << wpd.t() << std::endl;
wMd[device].buildFrom(wpd);
vpHomogeneousMatrix cMd = wMc.inverse() * wMd[device];
vpDisplay::displayFrame(I, cMd, cam, 0.1);
std::stringstream ss;
ss << device;
double X = cMd[0][3];
double Y = cMd[1][3];
double Z = cMd[2][3];
vpMeterPixelConversion::convertPoint(cam, X / Z, Y / Z, pos);
vpDisplay::displayText(I, pos + vpImagePoint(10, 10), ss.str(), vpColor::white);
vpDisplay::displayText(I, 10, 10, "Click to quit...", vpColor::red);
}
if (vpDisplay::getClick(I, false)) {
end = true;
}
}
// Close device
for (size_t device = 0; device < virtuose.size(); device++) {
virtuose[device].close();
}
std::cout << "The end" << std::endl;
}
#else
int main() { std::cout << "You should install Virtuose API to use this binary..." << std::endl; }
#endif
Generic class defining intrinsic camera parameters.
static const vpColor white
Definition: vpColor.h:206
static const vpColor red
Definition: vpColor.h:211
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:128
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
Definition: vpDisplayX.h:128
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void displayFrame(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, double size, const vpColor &color=vpColor::none, unsigned int thickness=1, const vpImagePoint &offset=vpImagePoint(0, 0), const std::string &frameName="", const vpColor &textColor=vpColor::black, const vpImagePoint &textOffset=vpImagePoint(15, 15))
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)
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpHomogeneousMatrix inverse() const
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
Definition: vpImagePoint.h:82
static double rad(double deg)
Definition: vpMath.h:127
static void convertPoint(const vpCameraParameters &cam, const double &x, const double &y, double &u, double &v)
Implementation of a pose vector and operations on poses.
Definition: vpPoseVector.h:189
vpRowVector t() const