diff --git a/mbari_aidata/plugins/extractors/tap_voc.py b/mbari_aidata/plugins/extractors/tap_voc.py index 57548a3..fb1ac58 100644 --- a/mbari_aidata/plugins/extractors/tap_voc.py +++ b/mbari_aidata/plugins/extractors/tap_voc.py @@ -77,6 +77,7 @@ def parse_voc(xml_file): 'saliency': -1, 'cluster': -1, 'concept': obj_info['name'], + 'verified': True, 'x': x, 'y': y, 'xx': x + w, @@ -87,4 +88,4 @@ def parse_voc(xml_file): objs.append(obj) return pd.DataFrame(objs, columns=['image_path', 'label', 'score', 'saliency', 'concept', 'cluster', - 'x', 'y', 'xx', 'xy', 'image_width', 'image_height']) + 'verified', 'x', 'y', 'xx', 'xy', 'image_width', 'image_height'])