MCPcopy
hub / github.com/xingyizhou/CenterNet / ddd_post_process

Function ddd_post_process

src/lib/utils/post_process.py:75–80  ·  view source on GitHub ↗
(dets, c, s, calibs, opt)

Source from the content-addressed store, hash-verified

73 return ret
74
75def ddd_post_process(dets, c, s, calibs, opt):
76 # dets: batch x max_dets x dim
77 # return 1-based class det list
78 dets = ddd_post_process_2d(dets, c, s, opt)
79 dets = ddd_post_process_3d(dets, calibs)
80 return dets
81
82
83def ctdet_post_process(dets, c, s, h, w, num_classes):

Callers 3

debugMethod · 0.90
save_resultMethod · 0.90
post_processMethod · 0.90

Calls 2

ddd_post_process_2dFunction · 0.85
ddd_post_process_3dFunction · 0.85

Tested by

no test coverage detected