Authors: Boujemaa Guermazi, Riadh Ksantini, Naimul Khan
Official repository for DynaSeg: A Deep Dynamic Fusion Method for Unsupervised Image Segmentation. This includes clean code and instructions for reproducing the results reported in our Image and Vision Computing journal paper.
DynaSeg is a deep dynamic fusion method for unsupervised image segmentation that effectively balances feature similarity and spatial continuity. It automates parameter tuning through dynamic weighting, allowing for efficient segmentation without extensive hyperparameter adjustments. DynaSeg integrates seamlessly with existing segmentation networks and has been tested to achieve state-of-the-art performance on multiple benchmark datasets.
To set up DynaSeg, you need to install the following OpenMMLab packages:
Install the required packages using the following commands:
pip install openmim mmdet mmsegmentation mmselfsup
mim install mmcv-full
To prepare the necessary data for training, follow these steps:
Download Datasets:
Unzip and Organize Data: Unzip the data and organize it into the following directory structure:
data/
├── curated
│ ├── train2017
│ │ ├── Coco164kFull_Stuff_Coarse_7.txt
│ ├── val2017
│ │ ├── Coco164kFull_Stuff_Coarse_7.txt
├── coco
│ ├── annotations
│ │ ├── train2017
│ │ │ ├── xxxxxxxxx.png
│ │ ├── val2017
│ │ │ ├── xxxxxxxxx.png
│ ├── train2017
│ │ ├── xxxxxxxxx.jpeg
│ ├── val2017
│ │ ├── xxxxxxxxx.jpeg
The curated directory contains the data splits for unsupervised segmentation, structured according to the splits used by PiCIE.
To evaluate DynaSeg on different datasets, follow these instructions:
tools/DynaSeg_COCO.py
to run the testing on the COCO dataset.eval_results.pkl
.tools/DynaSeg_SCF_BSD_VOC.py
to run the testing on the Pascal VOC 2012 and BSD500 datasets.tools/calculate_mIOU.py
.This codebase is based on MMCV, and it benefits a lot from DenseSiam, PiCIE, MMSelfSup, and Detectron2.
This project is licensed under the MIT License.
If you use DynaSeg in your research, please cite our work:
@article{guermazi2024dynaseg,
title={DynaSeg: A deep dynamic fusion method for unsupervised image segmentation incorporating feature similarity and spatial continuity},
author={Guermazi, Boujemaa and Ksantini, Riadh and Khan, Naimul},
journal={Image and Vision Computing},
pages={105206},
year={2024},
publisher={Elsevier}
}