You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

PathVG: Pathology Visual Grounding Benchmark

πŸ“– Overview

PathVG (Pathology Visual Grounding) is the first large-scale benchmark designed for linking natural language expressions to precise regions in pathology images. It enables research at the intersection of computational pathology, computer vision, and natural language processing.

The dataset bridges the gap between image-level question answering and region-level localization, providing a standardized benchmark for visual grounding in pathology.

The full paper is available on arXiv: https://arxiv.org/abs/2502.20869


πŸ“‚ Dataset Statistics

  • Images: 27,610 pathology images
  • Annotations: 33,500 expert-verified expressions with bounding boxes
  • Magnifications:
    • 20Γ—: Focus on cell arrangement and interactions
    • 40Γ—: Emphasize cellular structure and tumor infiltration
  • Annotation Quality: All expressions are created and validated by pathology experts via multi-stage review

πŸ“Š Data Format

Each sample contains:

  • image_id: Image filename (unique identifier)
  • height: Image height in pixels
  • width: Image width in pixels
  • bbox: Bounding box coordinates in format [x_min, y_min, x_max, y_max]
  • bbox_id: Unique bounding box identifier within the image
  • expression: List of natural language descriptions associated with the bounding box

Example:

{
  "bbox": [1680, 603, 1818, 756],
  "image_id": "8006.jpg",
  "height": 2048,
  "width": 2048,
  "bbox_id": 1,
  "expression": [
    "Upper-right image shows distinct tumor cell cluster spreading."
  ]
}
Downloads last month
89