Merge pull request #371 from chengzhengxin/master
ctdet_decode support cat_spec_wh
This commit is contained in:
commit
9efed05d53
|
@ -37,7 +37,7 @@ class CtdetDetector(BaseDetector):
|
|||
reg = reg[0:1] if reg is not None else None
|
||||
torch.cuda.synchronize()
|
||||
forward_time = time.time()
|
||||
dets = ctdet_decode(hm, wh, reg=reg, K=self.opt.K)
|
||||
dets = ctdet_decode(hm, wh, reg=reg, cat_spec_wh=self.opt.cat_spec_wh, K=self.opt.K)
|
||||
|
||||
if return_time:
|
||||
return output, dets, forward_time
|
||||
|
|
Loading…
Reference in New Issue