is_manipulation()
  • 1 Minute to read

is_manipulation()


Article summary

Checks if there is an ongoing manipulation procedure currently.

Reference

Arguments

None

Return

TypeDescription
BoolTrue 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?