README.md
March 9, 2026 · View on GitHub
[CVPR 2026] MixerCSeg
MixerCSeg: An Efficient Mixer Architecture for Crack Segmentation via Decoupled Mamba Attention
Zilong Zhao1, Zhengming Ding2, Pei Niu1, Wenhao Sun1, Feng Guo1, *
1 School of Qilu Transportation, Shandong University, China, 2 Department of Computer Science, Tulane University, USA.
Paper: (arXiv 2603.01361)
💥 News 💥
Feb. 28th, 2026: We have released the checkpoints and inference results for all datasets !Feb. 27th, 2026: We have released the code for MixerCSeg!Feb. 23th, 2026: MixerCSeg has been accepted to CVPR 2026 !
Abstract
Installation
conda create -n MixerCSeg python=3.10 -y
conda activate MixerCSeg
pip install torch==2.1.0+cu118 torchvision==0.16.0+cu118 torchaudio==2.1.0+cu118 -f https://download.pytorch.org/whl/torch_stable.html
pip install -U openmim
mim install mmcv-full
pip install -r requirements.txt
cd VMamba/models/kernels/selective_scan/
python setup.py install
pip install numpy==1.23
Getting Started
Train your model
You can modify the parameters in the main.py file and run it with the following command:
python main.py --dataset_path [your_dataset_path]
Test
You can perform inference on checkpoints using the following command. Note: Please set the dataset file at line 17 of test.py, and specify the checkpoint location at line 24:
python test.py
Calculate performance metrics using the following command. Please ensure to configure your result path:
python eval/evaluate.py --result_path [your_results_path]
Datasets and Checkpoints
- The datasets used in our work: CamCrack79, DeepCrack, Crack500 and CrackMap.
- Obtain our visualization results and checkpoints on four datasets.
- Move the downloaded checkpoint file to the designated path:
./checkpoints/weights/checkpoint_[your_dataset_name]/
Acknowledgment
This project is based on SCSegamba, VMamba, HiddenMambaAttn, LongMamba and DeciMamba, thanks for their excellent works.
Citation
If you are using our MixerCSeg for your research, please cite the following paper:
@article{zhao2026mixercseg,
title={MixerCSeg: An Efficient Mixer Architecture for Crack Segmentation via Decoupled Mamba Attention},
author={Zhao, Zilong and Ding, Zhengming and Niu, Pei and Sun, Wenhao and Guo, Feng},
journal={arXiv preprint arXiv:2603.01361},
year={2026}
}
Concat
If you have any other questions, feel free to contact me at zzl000503@163.com.