Skip to main content

Graph of Mark (GoM)

Python 3.8+ PyTorch PyPI version License: MIT

Graph of Mark (GoM) is a visual prompting framework that transforms images into structured semantic graphs for enhanced visual scene understanding. The system integrates state-of-the-art object detection, instance segmentation, depth estimation, and relationship extraction models to construct comprehensive scene graphs that can be used as visual prompts for Multimodal Language Models (MLMs).

Graph of Marks Output Example

Example output showing detected objects with segmentation masks and spatial relationships.


Publication

This work has been accepted at the 40th Annual AAAI Conference on Artificial Intelligence (AAAI 2026). The paper and supplementary materials are available in the paper/ directory.

If you use Graph of Mark in your research, please cite:

@inproceedings{gom2026aaai,
  title={Graph-of-Mark: Promote Spatial Reasoning in Multimodal Language Models with Graph-Based Visual Prompting},
  author={Giacomo Frisoni, Lorenzo Molfetta, Mattia Buzzoni, Gianluca Moro},
  booktitle    = {AAAI-26, Sponsored by the Association for the Advancement of Artificial Intelligence},
  year={2026},
  publisher    = {{AAAI} Press},
  year         = {2026},
}

Visit our research group website at: https://disi-unibo-nlp.github.io


Installation

From PyPI

pip install graph-of-mark

With optional dependencies:

# Install with all features
pip install "graph-of-mark[all]"

From Source

git clone https://github.com/disi-unibo-nlp/graph-of-marks.git
cd graph-of-marks
pip install -e ".[all]"

Quick Start

Check out examples/demo_gom.ipynb for detailed examples on how to use GoM.

Python API

from gom import GoM, ProcessingConfig

# Initialize the pipeline
pipeline = GoM(device="cuda")  # or "mps" for Apple Silicon, "cpu" for CPU

# Process an image with a question
config = ProcessingConfig(
    question="What objects are in the room?",
    style="gom_text_labeled",
)
result = pipeline.process("scene.jpg", config=config, save=False)

# Access results
print(f"Detected {len(result['boxes'])} objects")
print(f"Found {len(result['relationships'])} relationships")

# Display the output image
result["output_image"].show()  # PIL Image

Visual Prompting Styles

The library implements all visual prompting configurations presented in the paper:

from gom import GoM, ProcessingConfig, GOM_STYLE_PRESETS

pipeline = GoM(device="cuda")

# Use predefined style presets via ProcessingConfig
config = ProcessingConfig(
    question="Where is the bowl?",
    style="gom_text_labeled",      # Recommended for VQA tasks
    apply_question_filter=True,    # Filter objects by question relevance
)
result = pipeline.process("scene.jpg", config=config, save=False)

# Available styles:
# - "som_text": Set-of-Mark with textual IDs (baseline, no relations)
# - "som_numeric": Set-of-Mark with numeric IDs (baseline, no relations)
# - "gom_text": GoM with textual IDs and relation arrows
# - "gom_numeric": GoM with numeric IDs and relation arrows
# - "gom_text_labeled": GoM with textual IDs and labeled relations
# - "gom_numeric_labeled": GoM with numeric IDs and labeled relations

# Access scene graph representations for VLM prompting
print(result["scene_graph_text"])    # Triple format for LLM prompts
print(result["scene_graph_prompt"])  # Compact inline format

Manual configuration is also supported:

config = ProcessingConfig(
    question="What is near the table?",
    label_mode="numeric",           # "original", "numeric", or "alphabetic"
    display_relationships=True,
    display_relation_labels=True,
    aggressive_pruning=True,        # Keep only question-relevant objects
)
result = pipeline.process("scene.jpg", config=config, save=False)

Command-Line Interface

# Image preprocessing
gom-preprocess --input_file data.json --image_dir images/ --output_folder output/

# Visual Question Answering
gom-vqa --input_file vqa_data.json --model_name llava-hf/llava-1.5-7b-hf

VQA prompt default. The default prompt profile is gom_v2_concise. It tells the model that the drawn object-ID tags (person_1, bare numbers) and relation-arrow words are location pointers, not answers — so the VLM never copies a label tag as its reply. Override with --prompt-profile (scripts/run_vqa_inference.py), e.g. paper_declared for verbatim paper reproduction.


Pipeline Overview

The GoM pipeline processes images through the following stages:

Stage Description Models
Detection Object localization YOLOv8, OWL-ViT, GroundingDINO, Detectron2
Fusion Prediction aggregation Weighted Box Fusion (WBF), NMS
Segmentation Instance mask generation SAM, SAM2, SAM-HQ, FastSAM
Depth Estimation 3D scene understanding Depth Anything V2
Relationship Extraction Spatial/semantic relations CLIP-based, physics-based
Graph Construction Scene graph generation NetworkX

Detection Stage Depth Estimation Segmentation Stage Final GoM output

Pipeline stages: object detection, instance segmentation, depth estimation.

Return Dictionary

The process() method returns:

result = {
    "boxes": [[x1, y1, x2, y2], ...],     # Bounding boxes
    "labels": ["person", "chair", ...],    # Object labels
    "scores": [0.95, 0.87, ...],           # Confidence scores
    "masks": [np.ndarray, ...],            # Segmentation masks
    "depth": np.ndarray,                   # Depth map
    "relationships": [...],                 # Extracted relations
    "scene_graph": nx.DiGraph,             # NetworkX graph
    "scene_graph_text": "...",             # Triple format for prompts
    "scene_graph_prompt": "...",           # Compact format
    "output_image": PIL.Image.Image,       # Rendered visualization as PIL Image
    "processing_time": 12.5,               # Processing time (seconds)
}

Configuration

Visual Prompting Styles (Paper Table 2)

Style Preset Label Mode Relations Relation Labels Recommended Use
som_text Textual No No Set-of-Mark baseline
som_numeric Numeric No No Set-of-Mark baseline
gom_text Textual Yes No GoM with arrows
gom_numeric Numeric Yes No GoM with arrows
gom_text_labeled Textual Yes Yes VQA tasks
gom_numeric_labeled Numeric Yes Yes RefCOCO tasks

Pipeline Parameters

Parameter Description Default
detectors_to_use Detection models to employ ("yolov8",)
sam_version Segmentation model version "hq"
wbf_iou_threshold IoU threshold for WBF fusion 0.55
label_mode Label format ("original" or "numeric") "original"
display_labels Render object labels True
display_relationships Render relationship arrows True
display_relation_labels Render labels on arrows True
show_segmentation Render segmentation masks True
output_format Output image format "png"

Complete configuration options are documented in src/gom/config.py.


Custom Model Integration

GoM supports integration of custom detection, segmentation, and depth models:

from gom import GoM, ProcessingConfig
import numpy as np

def custom_detector(image):
    # Custom detection logic
    # Returns: boxes, labels, scores
    boxes = [[100, 100, 200, 200]]
    labels = ["person"]
    scores = [0.95]
    return boxes, labels, scores

def custom_segmenter(image, boxes):
    # Custom segmentation logic
    # Returns: list of boolean masks (H, W)
    h, w = image.size[1], image.size[0]
    masks = [np.ones((h, w), dtype=bool) for _ in boxes]
    return masks

def custom_depth(image):
    # Custom depth estimation
    # Returns: depth map (H, W) normalized to [0, 1]
    h, w = image.size[1], image.size[0]
    return np.zeros((h, w), dtype=np.float32)

# Create GoM with custom functions
pipeline = GoM(
    detect_fn=custom_detector,
    segment_fn=custom_segmenter,
    depth_fn=custom_depth,
    device="cuda"
)

config = ProcessingConfig(
    question="What objects are visible?",
    style="gom_text_labeled",
)
result = pipeline.process("scene.jpg", config=config, save=False)

Examples

The examples/ directory contains:

  • quickstart.py: Basic usage and installation verification
  • demo.ipynb: Comprehensive Jupyter notebook demonstrating all features

Docker

# Build the preprocessing image (fully pinned; see reproduction/docker/)
docker build -f reproduction/docker/preprocess.Dockerfile -t gom-paper-preprocess:1 .

# Run with GPU support.  The repo is mounted at its host path, not /workdir.
docker run --rm --gpus all -v "$PWD:$PWD" -w "$PWD" \
    -e PYTHONPATH="$PWD/src" gom-paper-preprocess:1 \
    python3 src/image_preprocessor.py --json_file data.json --output_folder out/

A second image, reproduction/docker/inference.Dockerfile, provides the vLLM inference stack. To set both up on a new machine, see reproduction/README.mdreproduction/run_afk.sh builds the images, downloads every model, and runs the full pipeline unattended.


Repository Structure

graph-of-marks/
├── src/gom/                    # Main package
│   ├── api.py                  # High-level API (GoM class)
│   ├── config.py               # Configuration management
│   ├── cli/                    # Command-line interface
│   ├── detectors/              # Object detection models
│   ├── segmentation/           # Segmentation models
│   ├── fusion/                 # Detection fusion strategies
│   ├── relations/              # Relationship extraction
│   ├── graph/                  # Scene graph construction
│   ├── viz/                    # Visualization utilities
│   ├── vqa/                    # VQA inference
│   └── utils/                  # Utility functions
├── examples/                   # Usage examples
├── scripts/                    # Inference scripts
├── external_libs/              # External dependencies (SAM2)
├── paper/                      # AAAI 2026 paper
├── pyproject.toml              # Package configuration
└── Makefile                    # Build commands

License

This project is licensed under the MIT License. See LICENSE for details.


Links

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graph_of_mark-1.2.0.tar.gz (389.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

graph_of_mark-1.2.0-py3-none-any.whl (426.6 kB view details)

Uploaded Python 3

File details

Details for the file graph_of_mark-1.2.0.tar.gz.

File metadata

  • Download URL: graph_of_mark-1.2.0.tar.gz
  • Upload date:
  • Size: 389.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.12

File hashes

Hashes for graph_of_mark-1.2.0.tar.gz
Algorithm Hash digest
SHA256 1a32e57bd098cea5475fd831e47da7ff1ca164a7ae4414743e37711085864b6d
MD5 8f994e82544bfe18a25eda2165d90a23
BLAKE2b-256 0ad8a4d31670b48fd26e170dba03a08d36e3102983f08bdde5615ff060464a3c

See more details on using hashes here.

File details

Details for the file graph_of_mark-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: graph_of_mark-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 426.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.12

File hashes

Hashes for graph_of_mark-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c8cf01789759319282ca5722240a3caa7114e214962266b097493f8c6c191666
MD5 c3d86ebb4fa08b820fe961ca8929e5c9
BLAKE2b-256 961bd4c9acf9faf927e0a6e63c3774d9d4eeb0c20ca27aabae8cb8d836f04320

See more details on using hashes here.

Release history Release notifications | RSS feed

1.2.1

2 files

This release

1.2.0 This release

2 files

1.1.0

2 files

1.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page