is_manipulation()
- 1 Minute to read
is_manipulation()
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
Checks if there is an ongoing manipulation procedure currently.
Reference
Arguments
None
Return
Type | Description |
---|---|
Bool | True if there is currently an ongoing grasping procedure, otherwise False . |
Examples
...
self.manip = self.enable_controller('manipulation')
...
await self.manip.pick_object(
detector_model = 'yolov5s_coco',
source = 'head_front',
object_name = 'cup'
)
self.log.info(self.manip.is_grasping())
...
Output
True
Was this article helpful?