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 = 0; i < argc; i++) {
if (std::string(argv[i]) == "--ip")
opt_ip = std::string(argv[i + 1]);
else if (std::string(argv[i]) == "--port")
opt_port = atoi(argv[i + 1]);
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->
setTitle(0,
"Force measurements");
plotter->
setTitle(1,
"Torque measurements");
}
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 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)
void init(const std::string &hostname, int port)
VISP_EXPORT int wait(double t0, double t)
VISP_EXPORT double measureTimeMs()