cxf2015

Results 3 issues of cxf2015

function process_data(): orig_size = np.array([[image.width, image.height] for image in (images)]) and boxes_xy = [boxxy / orig_size[i] for i, boxxy in enumerate(boxes_xy)] boxes_wh = [boxwh / orig_size[i] for i, boxwh in...

in box_uils.py: decode() function boxes[:, :2] -= boxes[:, 2:] / 2 boxes[:, 2:] += boxes[:, :2] have inplace operation error. should be change to: boxes_temp1=boxes[:,:2]-(boxes[:, 2:] / 2) boxes_temp2=boxes[:, 2:]+boxes[:,...

@FireRedTeam what the license about this project? thanks