detection-2016-nipsws icon indicating copy to clipboard operation
detection-2016-nipsws copied to clipboard

error in generate_bounding_box_from_annotation

Open priyashkla opened this issue 7 years ago • 1 comments

File "/home/priya/Downloads/detection-2016-nipsws-master/scripts/parse_xml_annotations.py", line 56, in generate_bounding_box_from_annotation masks[annotation[i, 3]:annotation[i, 4], annotation[i, 1]:annotation[i, 2], i] = 1

TypeError: slice indices must be integers or None or have an index method

priyashkla avatar Aug 23 '18 13:08 priyashkla

typecast annotations to int masks[int(annotation[i, 3]):int(annotation[i, 4]), int(annotation[i, 1]):int(annotation[i, 2]), i] = 1 it worked for me

Kage18 avatar Jun 10 '19 07:06 Kage18