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 VISP_HAVE_FT_IIT_SDK
bool opt_no_display = false;
bool opt_filtered = false;
for (int i = 0; i < argc; i++) {
if (std::string(argv[i]) == "--no-display" || std::string(argv[i]) == "-d")
opt_no_display = true;
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] [--help] [-d] [-f] [-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->
setTitle(0,
"Force measurements");
plotter->
setTitle(1,
"Torque measurements");
}
#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;
}