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 = 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;
}
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...
void initGraph(unsigned int graphNum, unsigned int curveNbr)
vpImage< unsigned char > I
void setLegend(unsigned int graphNum, unsigned int curveNum, const std::string &legend)
void plot(unsigned int graphNum, unsigned int curveNum, double x, double y)
void setTitle(unsigned int graphNum, const std::string &title)
VISP_EXPORT int wait(double t0, double t)
VISP_EXPORT double measureTimeMs()