38 #include <visp3/sensor/vpMocapQualisys.h>
42 #if defined(VISP_HAVE_QUALISYS) && defined(VISP_HAVE_THREADS)
48 #include <visp3/core/vpTime.h>
50 #ifdef ENABLE_VISP_NAMESPACE
60 void quitHandler(
int sig)
62 std::cout << std::endl <<
"TERMINATING AT USER REQUEST" << std::endl << std::endl;
68 void usage(
const char *argv[],
int error)
70 std::cout <<
"SYNOPSIS" << std::endl
71 <<
" " << argv[0] <<
" [--server-address <address>] [-sa]"
72 <<
" [--only-body] [-ob]"
74 <<
" [--verbose] [-v]"
75 <<
" [--help] [-h]" << std::endl
77 std::cout <<
"DESCRIPTION" << std::endl
78 <<
" --server-address <address>" << std::endl
79 <<
" Server address." << std::endl
80 <<
" Default: 192.168.30.42." << std::endl
82 <<
" --only-body <name>" << std::endl
83 <<
" Name of the specific body you want to be displayed." << std::endl
84 <<
" Default: ''" << std::endl
86 <<
" --all-bodies" << std::endl
87 <<
" When used, get all bodies pose including non visible bodies." << std::endl
89 <<
" --verbose, -v" << std::endl
90 <<
" Enable verbose mode." << std::endl
92 <<
" --help, -h" << std::endl
93 <<
" Print this helper message." << std::endl
95 std::cout <<
"USAGE" << std::endl
96 <<
" Example to test Qualisys connection:" << std::endl
97 <<
" " << argv[0] <<
" --server-address 127.0.0.1 --verbose" << std::endl
101 std::cout <<
"Error" << std::endl
103 <<
"Unsupported parameter " << argv[error] << std::endl;
107 void mocap_loop(std::mutex &lock,
bool opt_verbose,
bool opt_all_bodies, std::string &opt_serverAddress,
108 std::string &opt_onlyBody, std::map<std::string, vpHomogeneousMatrix> ¤t_bodies_pose)
114 std::cout <<
"Qualisys connection error. Check the Qualisys Task Manager or your IP address." << std::endl;
118 std::map<std::string, vpHomogeneousMatrix> bodies_pose;
120 if (opt_onlyBody ==
"") {
122 std::cout <<
"Qualisys error. Check the Qualisys Task Manager" << std::endl;
128 std::cout <<
"Qualisys error. Check the Qualisys Task Manager" << std::endl;
130 bodies_pose[opt_onlyBody] = pose;
134 current_bodies_pose = bodies_pose;
141 void display_loop(std::mutex &lock,
const std::map<std::string, vpHomogeneousMatrix> ¤t_bodies_pose,
bool verbose)
143 std::map<std::string, vpHomogeneousMatrix> bodies_pose;
148 bodies_pose = current_bodies_pose;
150 for (std::map<std::string, vpHomogeneousMatrix>::iterator it = bodies_pose.begin(); it != bodies_pose.end(); ++it) {
152 std::cout <<
"Found body: " << it->first << std::endl;
154 std::cout <<
" Translation [m]: " << it->second.getTranslationVector().t() << std::endl
156 std::cout <<
" Roll/pitch/yaw [deg]: ";
157 for (
unsigned int i = 0; i < 3; i++) {
160 std::cout << std::endl;
161 std::cout <<
" Transformation Matrix wMb:\n" << it->second << std::endl;
169 int main(
int argc,
const char *argv[])
171 bool opt_verbose =
false;
172 std::string opt_serverAddress =
"192.168.30.42";
173 std::string opt_onlyBody =
"";
174 bool opt_all_bodies =
false;
177 std::map<std::string, vpHomogeneousMatrix> current_bodies_pose;
179 signal(SIGINT, quitHandler);
181 for (
int i = 1; i < argc; i++) {
182 if (std::string(argv[i]) ==
"--verbose" || std::string(argv[i]) ==
"-v") {
185 else if (std::string(argv[i]) ==
"--server-address" || std::string(argv[i]) ==
"-sa") {
186 opt_serverAddress = std::string(argv[i + 1]);
189 else if (std::string(argv[i]) ==
"--only-body" || std::string(argv[i]) ==
"-ob") {
190 opt_onlyBody = std::string(argv[i + 1]);
193 else if (std::string(argv[i]) ==
"--all-bodies") {
194 opt_all_bodies =
true;
196 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
207 std::thread mocap_thread(
208 [&lock, &opt_verbose, &opt_all_bodies, &opt_serverAddress, &opt_onlyBody, ¤t_bodies_pose]() {
209 mocap_loop(lock, opt_verbose, opt_all_bodies, opt_serverAddress, opt_onlyBody, current_bodies_pose);
211 std::thread display_thread(
212 [&lock, ¤t_bodies_pose, &opt_verbose]() { display_loop(lock, current_bodies_pose, opt_verbose); });
215 display_thread.join();
222 std::cout <<
"Install qualisys_cpp_sdk to be able to test Qualisys Mocap System using ViSP" << std::endl;
Implementation of an homogeneous matrix and operations on such kind of matrices.
static double deg(double rad)
void setServerAddress(const std::string &serverAddr)
bool getSpecificBodyPose(const std::string &body_name, vpHomogeneousMatrix &body_pose)
void setVerbose(bool verbose)
bool getBodiesPose(std::map< std::string, vpHomogeneousMatrix > &bodies_pose, bool all_bodies=false)
Implementation of a rotation vector as quaternion angle minimal representation.
Implementation of a rotation vector as Euler angle minimal representation.
VISP_EXPORT void sleepMs(double t)