Skip to content

UCF-CRCV/TeD-SPAD

Repository files navigation

TeD-SPAD: Temporal Distinctiveness for Self-supervised Privacy-preservation for video Anomaly Detection [ICCV 2023]

Joseph Fioresi, Ishan Dave, Mubarak Shah

Website paper

Official PyTorch implementation and pre-trained models for TeD-SPAD: Temporal Distinctiveness for Self-supervised Privacy-preservation for video Anomaly Detection.

Abstract: Video anomaly detection (VAD) without human monitoring is a complex computer vision task that can have a positive impact on society if implemented successfully. While recent advances have made significant progress in solving this task, most existing approaches overlook a critical real-world concern: privacy. With the increasing popularity of artificial intelligence technologies, it becomes crucial to implement proper AI ethics into their development. Privacy leakage in VAD allows models to pick up and amplify unnecessary biases related to people’s personal information, which may lead to undesirable decision making. In this paper, we propose TeD-SPAD, a privacy-aware video anomaly detection framework that destroys visual private information in a self-supervised manner. In particular, we propose the use of a temporally-distinct triplet loss to promote temporally discriminative features, which complements current weakly-supervised VAD methods. Using TeD-SPAD, we achieve a positive trade-off between privacy protection and utility anomaly detection performance on three popular weakly supervised VAD datasets: UCF-Crime, XD-Violence, and ShanghaiTech. Our proposed anonymization model reduces private attribute prediction by 32.25% while only reducing frame-level ROC AUC on the UCF-Crime anomaly detection dataset by 3.69%.

Usage

Dataset Setup

UCF-Crime Page

VISPR Page

# Download necessary datasets.
# UCF101
mkdir datasets && cd datasets
wget https://www.crcv.ucf.edu/data/UCF101/UCF101.rar --no-check-certificate
unrar x UCF101.rar
rm -rf UCF101.rar
wget https://www.crcv.ucf.edu/data/UCF101/UCF101TrainTestSplits-RecognitionTask.zip --no-check-certificate
unzip UCF101TrainTestSplits-RecognitionTask.zip
rm -rf UCF101TrainTestSplits-RecognitionTask.zip

cd aux_code
# Edit config.py to point paths to correct directory.
nano config.py

** Move action_classes.json into UCF101/ucfTrainTestlist/

Environment Setup

# Clone the repo.
git clone https://github.com/joefioresi718/TeD-SPAD.git && cd TeD-SPAD

# Pip install to existing environment.
pip install -r pip_requirements.txt

# Anaconda install options.
conda create --name ted_spad --file conda_requirements.txt
conda env create -f ted_spad.yml

# Update aux_code/config.py paths to match dataset directories.

Extracted features/model weights: OneDrive

Usage Instructions

  1. Navigate to desired directory
  2. Modify parameters python file if necessary
  3. Run the main python file

Example:

# Anonymization Training.
cd anonymization_training
python train_anonymizer.py

# Privacy Evaluation.
cd privacy_training
python train_privacy.py

# Action Recognition Training.
cd action_training
python train_action.py

# Feature Extraction.
cd feature_extraction
# ShanghaiTech
python st_feature_extraction.py
# UCF_Crime/XD-Violence
python dali_extraction.py

# Anonymization Visualization.
cd visualization
python visualize_anonymization.py

Anomaly Detection Evaluation

Code taken from MGFN repo with minor changes to support our workflow.

  • Extract/download features, place in 'anomaly_detection_mgfn/data/'
cd anomaly_detection_mgfn
python main.py

About

Official webpage for TeD-SPAD: Temporal Distinctiveness for Self-supervised Privacy-preservation for video Anomaly Detection, accepted at ICCV '23.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages