return None when box is []

This commit is contained in:
LDOUBLEV 2021-08-03 06:50:40 +00:00
parent 83b97fadc4
commit 6ee715bb6b
1 changed files with 4 additions and 2 deletions

View File

@ -53,9 +53,11 @@ class DetLabelEncode(object):
txt_tags.append(True)
else:
txt_tags.append(False)
if len(boxes) == 0:
return None
boxes = self.expand_points_num(boxes)
#boxes = np.array(boxes, dtype=np.float32)
#txt_tags = np.array(txt_tags, dtype=np.bool)
boxes = np.array(boxes, dtype=np.float32)
txt_tags = np.array(txt_tags, dtype=np.bool)
data['polys'] = boxes
data['texts'] = txts