Abstract: Object detection, a fundamental and challenging problem in computer vision, has experienced rapid development due to the effectiveness of deep learning. The current objects to be detected are mostly rigid solid substances with apparent and distinct visual characteristics. In this paper, we endeavor on a scarcely explored task named Gaseous Object Detection (GOD), which is undertaken to explore whether the object detection techniques can be extended from solid substances to gaseous substances. Nevertheless, the gas exhibits significantly different visual characteristics: 1) saliency deficiency, 2) arbitrary and ever-changing shapes, 3) lack of distinct boundaries. To facilitate the study on this challenging task, we construct a GOD-Video dataset comprising 600 videos (141,017 frames) that cover various attributes with multiple types of gases. A comprehensive benchmark is established based on this dataset, allowing for a rigorous evaluation of frame-level and video-level detectors. Deduced from the Gaussian dispersion model, the physics-inspired Voxel Shift Field (VSF) is designed to model geometric irregularities and ever-changing shapes in potential 3D space. By integrating VSF into Faster RCNN, the VSF RCNN serves as a simple but strong baseline for gaseous object detection. Our work aims to attract further research into this valuable albeit challenging area.
#Step 1. Create a conda environment and activate it.
conda create --name openmmlab python=3.8 -y
conda activate openmmlab
#Step 2. Install PyTorch following official instructions, e.g.
conda install pytorch torchvision -c pytorch
#Step 3. MMDetection Installation
#Install MMCV using MIM.
pip install -U openmim
mim install mmcv-full
#Install MMDetection
cd VSF-RCNN
pip install -v -e .
# Step 4. install Shift3D
cd external/Shift3D
bash make.sh
Please refer to the mmdetection official guidence for more details.
You can preview the GOD-Video Dataset with NJU Box and download it from dataset pages.
|-VSF-RCNN
|---TLGDM
|---DEMO
|---data
|---|---IOD-Video_COCO_S1
|---|---IOD-Video_COCO_S2
|---|---IOD-Video_COCO_S3
#Please refer to /mmdet/apis/test.py for more details
python tools/test.py configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco_GOD-Video_VSF_demo.py ./work_dirs_VSFv2/S2model.pth --show-dir Visualization_Specifical
Step1: Download work_dirs_VSFv2 to VSF-RCNN/work_dirs_VSFv2
.
Step2: Choose Split: change data_root
and ann_file
in configs/_base_/datasets/GODVideo_detection.py
# 4.1.Evalution with mmdetection (notice the split consistency between code and model)
python tools/test.py configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco_GOD-Video_VSF.py ./work_dirs_VSFv2/S1model.pth --eval bbox
# 4.2.CVPR2022 version evalution pipeline
# 4.2.1 generate pkl file for evalution
python tools/test.py configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco_GOD-Video_VSF.py ./work_dirs_VSFv2/S1model.pth --show-dir show-dir
# 4.2.2 Calculate mAP with CVPR2022 evalution pipeline
cd ACT
bash ACT_run.sh 8 1 # 8-> frame number 1-> split
# train on single GPU
python tools/train.py configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco_GOD-Video_VSF.py --auto-scale-lr
# train on multi-GPUs
CUDA_VISIBLE_DEVICES=2,3 bash ./tools/dist_train.sh configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco_GOD-Video_VSF.py 2
Split&Models | mAP |
---|---|
S1model.pth | 21.82% |
S2model.pth | 17.22% |
S3model.pth | 22.24% |
Average | 20.43% |
- Code: MIT LICENSE
- Dataset: GOD-Video dataset is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
@article{zhou2024gaseous,
title={Gaseous object detection},
author={Zhou, Kailai and Wang, Yibo and Lv, Tao and Shen, Qiu and Cao, Xun},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
year={2024},
publisher={IEEE}
}