superquadric-model
All Data Structures Functions Variables Modules
main.cpp
1 /*
2  * Copyright (C) 2015 iCub Facility - Istituto Italiano di Tecnologia
3  * Author: Giulia Vezzani
4  * email: giulia.vezzani@iit.it
5  * Permission is granted to copy, distribute, and/or modify this program
6  * under the terms of the GNU General Public License, version 2 or any
7  * later version published by the Free Software Foundation.
8  *
9  * A copy of the license can be found at
10  * http://www.robotcub.org/icub/license/gpl.txt
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
15  * Public License for more details
16 */
17 
18 #include <yarp/os/Network.h>
19 
20 #include "superqModule.h"
21 
22 using namespace yarp::os;
23 
24 /**********************************************************************/
25 int main(int argc,char *argv[])
26 {
27  Network yarp;
28  if (!yarp.checkNetwork())
29  {
30  yError("unable to find YARP server!");
31  return 1;
32  }
33 
34  SuperqModule mod;
35  ResourceFinder rf;
36  rf.setDefaultContext("superquadric-model");
37  rf.configure(argc,argv);
38  return mod.runModule(rf);
39 }
bool configure(yarp::os::ResourceFinder &rf)
configure function of RF module
The SuperqModule class handle the superquadric computation and visualization, the point cloud and sup...
Definition: superqModule.h:40