Skip to content

[CVPR 2024 Highlight✨] Official Pytorch Code for EAGLE: Eigen Aggregation Learning for Object-Centric Unsupervised Semantic Segmentation

License

Notifications You must be signed in to change notification settings

MICV-yonsei/EAGLE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EAGLE 🦅: Eigen Aggregation Learning for Object-Centric Unsupervised Semantic Segmentation

✨Highlight @ CVPR 2024

PWC
PWC
PWC

[Project Page] [arXiv]

1_imageb

EAGLE: Eigen Aggregation Learning for Object-Centric Unsupervised Semantic Segmentation

IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) 2024 (Highlight)
Chanyoung Kim*, Woojung Han*, Dayun Ju, Seong Jae Hwang
Yonsei University

Abstract

Semantic segmentation has innately relied on extensive pixel-level annotated data, leading to the emergence of unsupervised methodologies. Among them, leveraging self-supervised Vision Transformers for unsupervised semantic segmentation (USS) has been making steady progress with expressive deep features. Yet, for semantically segmenting images with complex objects, a predominant challenge remains: the lack of explicit object-level semantic encoding in patch-level features. This technical limitation often leads to inadequate segmentation of complex objects with diverse structures. To address this gap, we present a novel approach, EAGLE, which emphasizes object-centric representation learning for unsupervised semantic segmentation. Specifically, we introduce EiCue, a spectral technique providing semantic and structural cues through an eigenbasis derived from the semantic similarity matrix of deep image features and color affinity from an image. Further, by incorporating our object-centric contrastive loss with EiCue, we guide our model to learn object-level representations with intra- and inter-image object-feature consistency, thereby enhancing semantic accuracy. Extensive experiments on COCO-Stuff, Cityscapes, and Potsdam-3 datasets demonstrate the state-of-the-art USS results of EAGLE with accurate and consistent semantic segmentation across complex scenes.

📖 Contents

Installation

Install Conda Environment

conda env create -f environment.yml
conda activate EAGLE

We share the same Anaconda environment with STEGO.

Download Pre-Trained Models

cd src_EAGLE
python download_models.py

Download Datasets

Modify the pytorch_data_dir to your own data directory and run download_datasets.py. Then, go to your data directory and extract the files from the zip archive:

python download_datasets.py

cd /YOUR/DATA/DIR
unzip cocostuff.zip
unzip cityscapes.zip
unzip potsdam.zip
unzip potsdamraw.zip

🦾Training

First, create a cropped dataset, and consider altering the crop_datasets.py script to select the specific dataset you want to crop.

python crop_datasets.py

Next, run the following in EAGLE/src_EAGLE:

python train_segmentation_eigen.py

You can modify hyperparameters in the file located at EAGLE/src_EAGLE/configs/train_config_cocostuff.yml

🦿Evaluation

To evaluate please run the following in EAGLE/src:

python eval_segmentation.py

You can modify evaluation hyperparameters in the file located at EAGLE/src_EAGLE/configs/eval_config.yml

Checkpoints

We release the weights on trained EAGLE:

Dataset backbone checkpoint drive
COCO-Stuff ViT-S/8 link
Cityscapes ViT-B/8 link

🦅 About EAGLE

Eigenvectors

Visualizing eigenvectors derived from S in the Eigen Aggregation Module. These eigenvectors not only distinguish different objects but also identify semantically related areas, highlighting how EiCue captures object semantics and boundaries effectively. eigenvector

EiCue

Comparison between K-means and EiCue. The bottom row presents EiCue, highlighting its superior ability to capture subtle structural intricacies and understand deeper semantic relationships, which is not as effectively achieved by K-means. EiCue

EAGLE Architecture

The pipeline of EAGLE. Leveraging the Laplacian matrix, which integrates hierarchically projected image key features and color affinity, the model harnesses eigenvector clustering to capture an object-centric perspective. Our model further adopts an object-level contrastive loss, utilizing the projected vector Z and ̃Z. The learnable prototype Φ, acts as a singular anchor that contrasts positive objects and negative objects. Our object-level contrastive loss is computed in two distinct manners: crosswise and non-crosswise to ensure semantic consistency.

image

Results

We evaluate the EAGLE algorithm on the CocoStuff, Cityscapes, and Potsdam-3 datasets.

main_results

Citation

If you found this code useful, please cite the following paper:

@InProceedings{2024eagle,
    author    = {Kim, Chanyoung and Han, Woojung and Ju, Dayun and Hwang, Seong Jae},
    title     = {EAGLE: Eigen Aggregation Learning for Object-Centric Unsupervised Semantic Segmentation},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
    month     = {June},
    year      = {2024}
}

📜 Acknowledgement

This repository has been developed based on the STEGO repository. Thanks for the good work!

About

[CVPR 2024 Highlight✨] Official Pytorch Code for EAGLE: Eigen Aggregation Learning for Object-Centric Unsupervised Semantic Segmentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages