← Collections

Hugging Face

ICCV Papers

A comprehensive ICCV paper dataset from 2013 to present, including metadata, abstracts, BibTeX records, download links, and full-paper PDFs for computer vision research.

May 17, 2026 DatasetComputer VisionResearch PapersICCVOCR GitHub Hugging Face

ICCV Papers: A Comprehensive Dataset for Computer Vision Literature

ICCV Papers is an open-source dataset that collects papers from the IEEE/CVF International Conference on Computer Vision from ICCV 2013 to present. It includes paper metadata, abstracts, BibTeX entries, original PDF download links, and organized full-paper PDF files.

ICCV is one of the most prestigious conferences in computer vision. Together with CVPR and ECCV, it forms a core venue for tracking progress in object detection, image segmentation, 3D reconstruction, video understanding, visual recognition, multimodal learning, and generative vision systems.

Why ICCV Papers Exists

Computer vision literature grows rapidly, and ICCV has accumulated many influential papers across more than a decade of modern deep learning research. Working with this literature at scale often requires repeated scraping, metadata cleaning, citation parsing, and PDF organization.

ICCV Papers provides a structured resource for researchers, students, and developers who need to work with ICCV literature programmatically. It is useful for:

Dataset Overview

The dataset contains 9,145 papers from ICCV 2013 to present and is continuously updated as new ICCV proceedings become available. The data is organized by year, with each year containing metadata and PDF files.

FieldTypeDescription
titlestringPaper title
authorsstringComma-separated list of authors
abstractstringPaper abstract
pdf_pathstringRelative path to the downloaded PDF file
download_urlstringDirect CVF Open Access PDF URL
bibtexstringBibTeX citation string

A representative metadata entry looks like this:

{
  "title": "3D Scene Understanding by Voxel-CRF",
  "authors": "Byung-Soo Kim, Pushmeet Kohli, Silvio Savarese",
  "abstract": "Scene understanding is an important yet very challenging problem in computer vision...",
  "pdf_path": "2013/pdf/Kim_3D_Scene_Understanding_2013_ICCV_paper.pdf",
  "download_url": "https://openaccess.thecvf.com/content_iccv_2013/papers/Kim_3D_Scene_Understanding_2013_ICCV_paper.pdf",
  "bibtex": "@InProceedings{Kim_2013_ICCV,author = {Kim, Byung-Soo and Kohli, Pushmeet and Savarese, Silvio},title = {3D Scene Understanding by Voxel-CRF},booktitle = {Proceedings of the IEEE International Conference on Computer Vision (ICCV)},month = {December},year = {2013}}"
}

Dataset Structure

Each ICCV year is stored as an independent folder. Metadata is provided as JSONL, and PDFs are stored under the corresponding year.

ICCV_Papers/
├── 2013/
│   ├── pdf/
│   │   ├── paper1.pdf
│   │   ├── paper2.pdf
│   │   └── ...
│   └── meta.jsonl
├── 2015/
│   ├── pdf/
│   └── meta.jsonl
├── 2017/
│   ├── pdf/
│   └── meta.jsonl
└── ...

Construction Pipeline

The dataset is built through a systematic pipeline that converts CVF Open Access proceedings into structured metadata and downloadable paper files.

1. Web Scraping

Paper listings are collected from the CVF Open Access repository. This step identifies the paper detail pages and original PDF links for each ICCV year.

2. Metadata Extraction

The pipeline parses paper pages to extract titles, author lists, PDF links, and BibTeX citation records. The extracted information is normalized into year-level JSONL files.

3. Abstract Retrieval

Abstracts are fetched from individual paper detail pages and attached to the corresponding metadata entries. This makes the dataset useful for semantic search, summarization, and topic analysis without requiring full PDF parsing first.

4. URL Generation and PDF Access

Direct PDF download URLs are generated from the original CVF Open Access pages. Each metadata record keeps both the local pdf_path and the original download_url, making it easy to retrieve or verify the source PDF.

5. Data Validation

The final step checks data integrity, field consistency, and file organization so that each ICCV year follows the same structure and can be loaded programmatically.

Quick Start

Install the basic dependencies:

pip install huggingface_hub requests

Download metadata for a specific ICCV year from Hugging Face:

from huggingface_hub import hf_hub_download
import json

year = "2013"
meta_path = hf_hub_download(
    repo_id="choucsan/ICCV_Papers",
    filename=f"{year}/meta.jsonl",
    repo_type="dataset",
)

papers = []
with open(meta_path, "r", encoding="utf-8") as f:
    for line in f:
        papers.append(json.loads(line))

print(f"Loaded {len(papers)} ICCV {year} papers")

Download a paper PDF using the original CVF Open Access URL:

import os
import requests

os.makedirs(f"iccv_{year}_pdfs", exist_ok=True)

paper = papers[0]
response = requests.get(paper["download_url"])
response.raise_for_status()

filename = os.path.basename(paper["pdf_path"])
with open(f"iccv_{year}_pdfs/{filename}", "wb") as f:
    f.write(response.content)

print(f"Downloaded: {filename}")

Applications

ICCV Papers can support both academic research workflows and applied machine learning systems.

ApplicationHow ICCV Papers Helps
Literature reviewEnables large-scale discovery and filtering across ICCV papers
Trend analysisSupports year-by-year analysis of computer vision topics and methods
Text retrievalProvides titles, abstracts, and PDFs for semantic search systems
SummarizationSupplies paper abstracts and full PDFs for summarization pipelines
Citation analysisIncludes BibTeX records for citation graph construction
Knowledge graphsHelps connect papers, authors, topics, venues, and methods
PDF processingSupports full-text extraction, OCR, figure extraction, and layout analysis
Recommendation systemsEnables paper recommendation based on title, abstract, or PDF content

Data Source

The dataset is derived from the official CVF Open Access proceedings. CVF Open Access provides the original paper pages, abstracts, PDF links, and citation information used to organize this collection.

Citation and Contact

If ICCV Papers helps your work, please consider linking back to the repository or dataset page. For questions, suggestions, or collaboration, contact choucisan@gmail.com.