This example shows how to retrieve data from an IIT F/T sensor connected to a computer by Ethernet.
#include <iostream>
#include <visp3/gui/vpPlot.h>
#include <visp3/sensor/vpForceTorqueIitSensor.h>
int main(int argc, char **argv)
{
#ifdef ENABLE_VISP_NAMESPACE
#endif
#ifdef VISP_HAVE_FT_IIT_SDK
bool opt_no_display = false;
bool opt_filtered = false;
for (int i = 1; i < argc; i++) {
if (std::string(argv[i]) == "--no-display" || std::string(argv[i]) == "-d") {
opt_no_display = true;
}
else if (std::string(argv[i]) == "--filtered" || std::string(argv[i]) == "-f") {
opt_filtered = true;
}
else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
std::cout << "\nUsage: " << argv[0]
<< " [--no-display]"
<< " [--filtered]"
<< " [-d]"
<< " [-f]"
<< " [--help,-h]\n" << std::endl;
return 0;
}
}
std::cout << "Disable display: " << opt_no_display << std::endl;
#if defined(VISP_HAVE_DISPLAY)
if (!opt_no_display) {
plotter =
new vpPlot(2, 700, 700, 100, 200,
"Curves...");
plotter->initGraph(0, 3);
plotter->setTitle(0, "Force measurements");
plotter->setLegend(0, 0, "Fx");
plotter->setLegend(0, 1, "Fy");
plotter->setLegend(0, 2, "Fz");
plotter->initGraph(1, 3);
plotter->setTitle(1, "Torque measurements");
plotter->setLegend(1, 0, "Tx");
plotter->setLegend(1, 1, "Ty");
plotter->setLegend(1, 2, "Tz");
}
#endif
std::cout << "Unable to connect to IIT force-torque sensor" << std::endl;
return EXIT_SUCCESS;
}
bool end = false;
unsigned long nbacq = 0;
while (!end) {
#if defined(VISP_HAVE_DISPLAY)
if (!opt_no_display) {
plotter->plot(0, nbacq, force);
plotter->plot(1, nbacq, torque);
end = true;
}
}
}
else {
std::cout <<
"F/T: " << ft.
t() << std::endl;
if (nbacq > 30) {
end = true;
}
}
#else
std::cout <<
"F/T: " << ft.
t() << std::endl;
if (nbacq > 30) {
end = true;
}
#endif
nbacq++;
}
std::cout << "Mean acquisition frequency: " << fps << " Hz" << std::endl;
#if defined(VISP_HAVE_DISPLAY)
if (plotter) {
delete plotter;
}
#endif
std::cout << "Test succeed" << std::endl;
#else
(void)argc;
(void)argv;
std::cout << "ViSP is not build with IIT force-torque SDK support" << std::endl;
#endif
return EXIT_SUCCESS;
}
Implementation of column vector and the associated operations.
vpColVector extract(unsigned int r, unsigned int colsize) const
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
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)
bool connected(int timeout_ms=0) const
vpColVector getForceTorque(bool filtered=false)
This class enables real time drawing of 2D or 3D graphics. An instance of the class open a window whi...
VISP_EXPORT double measureTimeMs()
VISP_EXPORT int wait(double t0, double t)