CFF-KDNet: Cross-Scale Feature Fusion Network with Knowledge Distillation for Camouflaged Object Detection

November 10, 2025 · View on GitHub

Authors: Bo Cai, Houjie Li, Yanping Yang, Jin Yan

Our work has been accepted by ESWA. The code has already been open sourced.

If you are interested in our work, please do not hesitate to contact us at 765499227@qq.com via email.

Alt text for image

🔆 News

[17.9.2025] We have released the code and model checkpoints for CFF-KDNet !

[27.10.2025] CFF-KDNet has been accepted by ESWA !

🕳 Performance

ModelBackboneParamsCAMO (S_α/Fβω/MAE/Eξ)COD10K (S_α/Fβω/MAE/Eξ)NC4K (S_α/Fβω/MAE/Eξ)
CFF-KDNet-E2EfficientNet-B213.06M0.855/0.812/0.052/0.9120.866/0.779/0.023/0.9220.878/0.827/0.034/0.925
CFF-KDNet-R2Res2Net-5036.06M0.832/0.786/0.062/0.8860.866/0.789/0.023/0.9220.871/0.824/0.036/0.920
CFF-KDNet-P2PVTv2-B235.62M0.870/0.833/0.048/0.9200.889/0.821/0.019/0.9370.897/0.854/0.030/0.936
CFF-KDNet-SSMT-T21.73M0.880/0.847/0.045/0.9290.891/0.822/0.019/0.9400.899/0.861/0.029/0.940
CFF-KDNet-P4PVTv2-B472.81M0.888/0.859/0.040/0.9400.900/0.842/0.017/0.9490.902/0.867/0.027/0.943

🔧 Setup

📖 Prepare Data

COD dataset can be found at google drive.

⛓ Install Requirements

  • Python 3.10.16
  • torchvision 0.16.2
  • Others: pip install -r requirements.txt

🧪 Evaluation

Tercher:
python train.py --config configs/icod_train.py --model-name <MODEL_NAME> --evaluate --load-from <TRAINED_WEIGHT>

Student:
python train_kd.py --config configs/icod_train.py --model-name <MODEL_NAME> --evaluate --load-from <TRAINED_WEIGHT>

🪢 Training

First training teacher model

python train.py --config configs/icod_train.py --pretrained --model-name CFFKDNet_PVTB4

Then training student model

python train_kd.py --config configs/icod_train.py --pretrained --model-name Res2Net50_KD

🖼 Prediction maps

We provide the prediction maps of our CFF-KDNet model COD Dataset here, including: PVT,Res2Net,EfficientNet and SMT.

CFF-KDNet-weights (PVT/SMT/Res2Net) here.

🗂 Citation

If you use CFF-KDNet method in your research or wish to refer to the baseline results published in the Model, please use the following BibTeX entry.

@article{Cai2026CFFKDNet,
  title={CFF-KDNet: Cross-scale feature fusion network with knowledge distillation for camouflaged object detection},
  author={Bo Cai and Houjie Li and Yanping Yang and Jin Yan},
  journal={Expert Systems with Applications},
  volume={299},
  number={C},
  pages={130209},
  year={2026},
  month={Mar},
  doi={10.1016/j.eswa.2025.130209}
}