TensorRT_yolo3_module icon indicating copy to clipboard operation
TensorRT_yolo3_module copied to clipboard

Static class-name["Person"] mentioned

Open ghost opened this issue 6 years ago • 0 comments

Hi @Cw-zero, in [trt_yolo3_module_multibatch.py][line:150] you mentioned static class name 'Person'. It should be dynamically aligned like-wise yolo. right? If so, how can we?

for b in boxes_k: x1=int(b[0]) x2=int(b[2]) y1=int(b[1]) y2=int(b[3]) box_list.append([x1,x2,y1,y2]) class_list.append('person')

ghost avatar Dec 18 '19 08:12 ghost