├── .gitignore ├── .gitpod.yml ├── .metadata.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── data ├── box ├── car ├── cleanser ├── cylinder └── toy ├── misc └── output.gif └── src ├── main.cpp ├── nlp.cpp └── nlp.h /.gitignore: -------------------------------------------------------------------------------- 1 | build* 2 | *~ 3 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/.metadata.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/README.md -------------------------------------------------------------------------------- /data/box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/data/box -------------------------------------------------------------------------------- /data/car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/data/car -------------------------------------------------------------------------------- /data/cleanser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/data/cleanser -------------------------------------------------------------------------------- /data/cylinder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/data/cylinder -------------------------------------------------------------------------------- /data/toy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/data/toy -------------------------------------------------------------------------------- /misc/output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/misc/output.gif -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/nlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/src/nlp.cpp -------------------------------------------------------------------------------- /src/nlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/find-superquadric/HEAD/src/nlp.h --------------------------------------------------------------------------------