├── .gitignore ├── README.md ├── example.jpg ├── examples ├── exam_check_data.py ├── exam_eval.py ├── exam_grasp_format.py ├── exam_loadGrasp.py └── exam_vis.py ├── graspclutter6dAPI ├── __init__.py ├── grasp.py ├── graspclutter6d.py ├── graspclutter6d_eval.py └── utils │ ├── __init__.py │ ├── config.py │ ├── dexnet │ ├── LICENSE │ ├── __init__.py │ ├── abstractstatic.py │ ├── constants.py │ └── grasping │ │ ├── __init__.py │ │ ├── contacts.py │ │ ├── grasp.py │ │ ├── grasp_quality_config.py │ │ ├── grasp_quality_function.py │ │ ├── graspable_object.py │ │ ├── meshpy │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── mesh.py │ │ ├── obj_file.py │ │ ├── sdf.py │ │ ├── sdf_file.py │ │ └── stable_pose.py │ │ └── quality.py │ ├── eval_utils.py │ ├── pose.py │ ├── rotation.py │ ├── trans3d.py │ ├── utils.py │ ├── vis.py │ └── xmlhandler.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/README.md -------------------------------------------------------------------------------- /example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/example.jpg -------------------------------------------------------------------------------- /examples/exam_check_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/examples/exam_check_data.py -------------------------------------------------------------------------------- /examples/exam_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/examples/exam_eval.py -------------------------------------------------------------------------------- /examples/exam_grasp_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/examples/exam_grasp_format.py -------------------------------------------------------------------------------- /examples/exam_loadGrasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/examples/exam_loadGrasp.py -------------------------------------------------------------------------------- /examples/exam_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/examples/exam_vis.py -------------------------------------------------------------------------------- /graspclutter6dAPI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/__init__.py -------------------------------------------------------------------------------- /graspclutter6dAPI/grasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/grasp.py -------------------------------------------------------------------------------- /graspclutter6dAPI/graspclutter6d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/graspclutter6d.py -------------------------------------------------------------------------------- /graspclutter6dAPI/graspclutter6d_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/graspclutter6d_eval.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/config.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/LICENSE -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/__init__.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/abstractstatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/abstractstatic.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/constants.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/__init__.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/contacts.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/grasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/grasp.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/grasp_quality_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/grasp_quality_config.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/grasp_quality_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/grasp_quality_function.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/graspable_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/graspable_object.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/meshpy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/meshpy/LICENSE -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/meshpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/meshpy/__init__.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/meshpy/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/meshpy/mesh.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/meshpy/obj_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/meshpy/obj_file.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/meshpy/sdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/meshpy/sdf.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/meshpy/sdf_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/meshpy/sdf_file.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/meshpy/stable_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/meshpy/stable_pose.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/dexnet/grasping/quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/dexnet/grasping/quality.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/eval_utils.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/pose.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/rotation.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/trans3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/trans3d.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/utils.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/vis.py -------------------------------------------------------------------------------- /graspclutter6dAPI/utils/xmlhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/graspclutter6dAPI/utils/xmlhandler.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeungBack/graspclutter6dAPI/HEAD/setup.py --------------------------------------------------------------------------------