Skip to content

Gated Transformer for Hyperspectral Anomaly Detection

Notifications You must be signed in to change notification settings

jeline0110/GT-HAD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GT-HAD: Gated Transformer for Hyperspectral Anomaly Detection (IEEE TNNLS)

Jie Lian, Lizhi Wang, He Sun, Hua Huang


Abstract: Hyperspectral anomaly detection (HAD) aims to distinguish between the background and anomalies in a scene, which has been widely adopted in various applications. Deep neural network (DNN)-based methods have emerged as the predominant solution, wherein the standard paradigm is to discern the background and anomalies based on the error of self-supervised hyperspectral image (HSI) reconstruction. However, current DNN-based methods cannot guarantee correspondence between the background, anomalies, and reconstruction error, which limits the performance of HAD. In this article, we propose a novel gated transformer network for HAD (GT-HAD). Our key observation is that the spatial–spectral similarity in HSI can effectively distinguish between the background and anomalies, which aligns with the fundamental definition of HAD. Consequently, we develop GT-HAD to exploit the spatial–spectral similarity during HSI reconstruction. GT-HAD consists of two distinct branches that model the features of the background and anomalies, respectively, with content similarity as constraints. Furthermore, we introduce an adaptive gating unit to regulate the activation states of these two branches based on a content-matching method (CMM). Extensive experimental results demonstrate the superior performance of GT-HAD.


Network Architecture

Comparison Methods:

In addition to GT-HAD, this repo includes the implementation of the following anomaly detection methods. DNN-based methods (Auto-AD, LREN) are available in GT-HAD/dnnmethods, and non-DNN methods (RX, KIFD, 2S-GLRT, MsRFQFT, CRD, GTVLRR, PTA, PCA-TLRSR) are available in GT-HAD/non-dnnmethods.

Supported Algorithms:

Besides, we also provide their original codes in GT-HAD/original-codes.

  • RX, CRD, and 2S-GLRT are available in GT-HAD/original-codes/2S-GLRT.zip.
  • KIFD is available in GT-HAD/original-codes/KIFD.zip.
  • MsRFQFT is available in GT-HAD/original-codes/MsRFQFT.zip.
  • GTVLRR, PTA are available in GT-HAD/original-codes/PTA.zip.
  • PCA-TLRSR is available in GT-HAD/original-codes/PCA-TLRSRT.zip.
  • Auto-AD is available in GT-HAD/original-codes/Auto-AD.zip.
  • LREN is available in GT-HAD/original-codes/LREN.zip.

1. Create Environment:

1.1 DNN-based Methods:

  • Python 3 (Recommend to use Anaconda)
  • NVIDIA GPU + CUDA
  • Tensorflow for LREN
  • Pytorch for Auto-AD and GT-HAD
  • Numpy
  • Sklearn
  • Scipy
  • Progressbar

1.2 Non-DNN Methods:

  • MATLAB

1.3 Other Requirements:

  • Matplotlib
  • Seaborn

2. Prepare Dataset:

Datasets are available in GT-HAD/data.

-- los-angeles-1.mat
-- los-angeles-2.mat
-- gulfport.mat
-- texas-goast.mat
-- cat-island.mat
-- pavia.mat

3. Experiments:

3.1 Running:

  • DNN-based Methods:
# Auto-AD
cd GT-HAD/dnnmethods/Auto-AD/
python main.py 

# LREN
cd GT-HAD/dnnmethods/LREN/
python main.py 

# GT-HAD
cd GT-HAD/dnnmethods/GT-HAD/
python main.py 
  • non-DNN Methods:
# RX
locate GT-HAD/non-dnnmethods/RX/
run run.m 

# KIFD
locate GT-HAD/non-dnnmethods/KIFD/
run run.m 

# 2S-GLRT
locate GT-HAD/non-dnnmethods/2S-GLRT/
run run.m 

# MsRFQFT
locate GT-HAD/non-dnnmethods/MsRFQFT/
run run.m

# CRD
locate GT-HAD/non-dnnmethods/CRD/
run run.m

# GTVLRR
locate GT-HAD/non-dnnmethods/GTVLRR/
run run.m

# PTA
locate GT-HAD/non-dnnmethods/PTA/
run run.m

# PCA-TLRSR
locate GT-HAD/non-dnnmethods/PCA-TLRSR/
run run.m

The detection results will be output into GT-HAD/results/. Taking RX as an example, RX_map.mat is used to draw color anomaly map and box-whisker plot, and RX_roc.mat is used to draw ROC curve and calculate AUC.

3.2 Testing:

  • Generate color anomaly map:
cd GT-HAD/scripts/
python heatmap.py
  • Generate box-whisker plot:
cd GT-HAD/scripts/
python boxplot.py
  • Generate ROC curve and calculate AUC:
cd GT-HAD/scripts/
python roc.py

4. Citation:

If this repo helps you, please consider citing our work:

@article{gt-had,
  title={GT-HAD: Gated Transformer for Hyperspectral Anomaly Detection},
  author={Jie Lian and Lizhi Wang and He Sun and Hua Huang},
  journal={IEEE Transactions on Neural Networks and Learning Systems},
  year={2024}
}

5. Contact:

For any question, please contact:

lianjie@bit.edu.cn

About

Gated Transformer for Hyperspectral Anomaly Detection

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages