MCPcopy Create free account
hub / github.com/OpenGVLab/HumanBench / parse_gt_boxes

Method parse_gt_boxes

PATH/core/solvers/utils/detools/box.py:354–360  ·  view source on GitHub ↗
(cls, gtboxes)

Source from the content-addressed store, hash-verified

352
353 @classmethod
354 def parse_gt_boxes(cls, gtboxes):
355 rt_boxes = []
356 for box in gtboxes:
357 gt_box = DetBoxGT()
358 gt_box.parseOdf(box)
359 rt_boxes.append(gt_box)
360 return rt_boxes
361
362 @classmethod
363 def parse_gt_boxes_by_name(cls, gtboxes,name):

Callers

nothing calls this directly

Calls 2

parseOdfMethod · 0.95
DetBoxGTClass · 0.85

Tested by

no test coverage detected