the specific meaning of each file in cocobu_box??
by running make_bu_data.py wu get: cocobu_box. but i don't know what the item['box'] refers to!!
if i want to get the class of the bounding box, how can i do?
@qin79 ,
The make_bu_data.py script parses the mscoco train/val/split object detections generated by the bottom-up attention codebase.
Those files, only include the following fields ['image_id', 'image_w','image_h','num_boxes', 'boxes', 'features'] so there is no reference to the class of the corresponding detected object. These serve in the code as just object proposals, without the need for classification of the detected object.
Please let us know if that answers your question.