This example shows how to retrieve data from an ATI F/T sensor connected to a Net F/T box.
#include <iostream>
#include <visp3/gui/vpPlot.h>
#include <visp3/sensor/vpForceTorqueAtiNetFTSensor.h>
int main(int argc, char **argv)
{
#ifdef ENABLE_VISP_NAMESPACE
#endif
#ifdef VISP_HAVE_FUNC_INET_NTOP
std::string opt_ip = "192.168.1.1";
int opt_port = 49152;
bool opt_no_display = false;
for (int i = 1; i < argc; i++) {
if (std::string(argv[i]) == "--ip" && i + 1 < argc) {
opt_ip = std::string(argv[++i]);
}
else if (std::string(argv[i]) == "--port" && i + 1 < argc) {
opt_port = atoi(argv[++i]);
}
else if (std::string(argv[i]) == "--no-display" || std::string(argv[i]) == "-d") {
opt_no_display = true;
}
else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
std::cout << "\nUsage: " << argv[0]
<< " [--ip <Net F/T IP address (default: 192.168.1.1)>]"
<< " [--port <Ethernet port (default: 49152)>]"
<< " [--no-display] [-d] [--help] [-h]\n"
<< std::endl;
return EXIT_SUCCESS;
}
}
std::cout << "Use IP : " << opt_ip << std::endl;
std::cout << "Use port: " << opt_port << std::endl;
std::cout << "Disable display: " << opt_no_display << std::endl;
ati_net_ft.
init(opt_ip, opt_port);
std::cout << "Unable to start streaming" << std::endl;
return EXIT_FAILURE;
}
#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");
}
bool bias = false;
#endif
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);
if (bias) {
}
else {
}
end = true;
}
bias = !bias;
if (bias) {
std::cout << "Bias F/T sensor" << std::endl;
}
else {
std::cout << "Unbias F/T sensor" << std::endl;
}
}
}
}
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++;
}
}
#if defined(VISP_HAVE_DISPLAY)
if (plotter) {
delete plotter;
}
#endif
std::cout << "Mean acquisition frequency: " << fps << " Hz" << std::endl;
std::cout << "Test succeed" << std::endl;
#else
(void)argc;
(void)argv;
std::cout << "vpForceTorqueAtiNetFTSensor is not supported on this platform" << 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)
vpColVector getForceTorque() const
void bias(unsigned int n_counts=50)
bool waitForNewData(unsigned int timeout=50)
This class enables real time drawing of 2D or 3D graphics. An instance of the class open a window whi...
void init(const std::string &hostname, int port)
VISP_EXPORT double measureTimeMs()
VISP_EXPORT int wait(double t0, double t)