Skip to content

NiFangBaAGe/Explicit-Visual-Prompt

Repository files navigation

[CVPR 23] Explicit Visual Prompting for Low-Level Structure Segmentations

Weihuang Liu, Xi Shen, Chi-Man Pun, and Xiaodong Cun by University of Macau and Tencent AI Lab.

🔥 News

The extension work of Explicit Visual Prompting for Universal Foreground Segmentations is released. The codes, models, and results can be found in this repository.

Abstract

We consider the generic problem of detecting low-level structures in images, which includes segmenting the manipulated parts, identifying out-of-focus pixels, separating shadow regions, and detecting concealed objects. Whereas each such topic has been typically addressed with a domain-specific solution, we show that a unified approach performs well across all of them. We take inspiration from the widely-used pre-training and then prompt tuning protocols in NLP and propose a new visual prompting model, named Explicit Visual Prompting (EVP). Different from the previous visual prompting which is typically a dataset-level implicit embedding, our key insight is to enforce the tunable parameters focusing on the explicit visual content from each individual image, i.e., the features from frozen patch embeddings and the input's high-frequency components. The proposed EVP significantly outperforms other parameter-efficient tuning protocols under the same amount of tunable parameters (5.7% extra trainable parameters of each task). EVP also achieves state-of-the-art performances on diverse low-level structure segmentation tasks compared to task-specific solutions.

Overview

teaser

We propose a unified method for four low-level structure segmentation tasks: camouflaged object, forgery, shadow and defocus blur detection (left). Our approach relies on a pre-trained frozen transformer backbone that leverages explicit extracted features, e.g., the frozen embedded features and high-frequency components, to prompt knowledge (right).

Pipeline

pipeline

We remodulate the features via the Embedding Tune and the HFC Tune. The Adaptor is designed to efficiently obtain prompts.

Environment

This code was implemented with Python 3.6 and PyTorch 1.8.1. You can install all the requirements via:

pip install -r requirements.txt

Demo

python demo.py --input [INPUT_PATH] --model [MODEL_PATH] --prompt [PROMPT_PATH] --resolution [HEIGHT],[WIDTH] --config [CONFIG_PATH]

[INPUT_PATH]: input image

[PROMPT_PATH]: prompt checkpoint

[MODEL_PATH]: backbone checkpoint

[HEIGHT]: target height

[WIDTH]: target width

[CONFIG_PATH]: config file

Quick Start

  1. Download the dataset and put it in ./load.
  2. Download the pre-trained SegFormer backbone.
  3. Training:
python train.py --config configs/train/segformer/train_segformer_evp_defocus.yaml 
  1. Evaluation:
python test.py --config configs/test/test_defocus.yaml  --model mit_b4.pth --prompt ./save/_train_segformer_evp_defocus/prompt_epoch_last.pth
  1. Visualization:
python demo.py --input defocus.png --model ./mit_b4.pth --prompt ./save/_train_segformer_evp_defocus/prompt_epoch_last.pth --resolution 320,320 --config configs/demo.yaml

Train

python train.py --config [CONFIG_PATH]

Test

python test.py --config [CONFIG_PATH] --model [MODEL_PATH] --prompt [PROMPT_PATH]

Models and Results

Please find the pre-trained models and results here.

Dataset

Camouflaged Object Detection

Defocus Blur Detection

Forgery Detection

Shadow Detection

Citation

If you find our work useful in your research, please consider citing:

@inproceedings{liu2023explicit,
  title={Explicit visual prompting for low-level structure segmentations},
  author={Liu, Weihuang and Shen, Xi and Pun, Chi-Man and Cun, Xiaodong},
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
  pages={19434--19445},
  year={2023}
}

Acknowledgements

EVP code borrows heavily from LIIF, SETR and SegFormer. We thank the author for sharing their wonderful code.