- translation_thresh: float of the translation threshold.
- rotation_thresh: float of the rotation threshold.
**Output:**
- GraspGroup instance after nms.
'''
from grasp_nms import nms_grasp
return GraspGroup(nms_grasp(self.grasp_group_array, translation_thresh, rotation_thresh))
nms抓取非极大值抑制的具体实现在项目文件中未找到
def nms(self, translation_thresh = 0.03, rotation_thresh = 30.0 / 180.0 * np.pi): ''' Input: