How figure and caption extraction is scored
masterExtractors must return a figure region, a caption region, the page number, a figure identifier (e.g., "Figure 1"), and optionally the caption text.
An extraction is considered correct if it meets all these criteria:
- The page number matches the ground truth.
- The identifier matches the ground truth.
- The bounding box overlap score (Intersection over Union / Area of Overlap / Area of Union) is $\ge 0.8$.
- For captions: The bounding box meets the IoU criteria, and the caption is also considered correct if its text matches the ground truth text.
Errors:
- False Positives (FPs): Extracted figures with page numbers/identifiers not in the gold standard.
- False Negatives (FNs): Gold standard figures with page numbers/identifiers not found in the extraction.