Skip to content

zc199823/BBNet--CoCOD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Collaborative Camouflaged Object Detection: A Large-Scale Dataset and Benchmark (IEEE TNNLS)

Authors: Cong Zhang, Hong-Bo Bi, Tian-Zhu Xiang, Ran-Wan Wu, Jinghui Tong, Xiufang Wang

1. CoCOD8K

-We propose the first large-scale and challenging CoCOD dataset, termed CoCOD8K, which contains 8,528 high-resolution camouflaged images paired with corresponding binary mask annotations. This work provides a foundation for the CoCOD field and is expected to give a strong boost to growth in the COD community.

image
Figure 1: Five image groups are from the proposed CoCOD8K datasets, which are (a) crawling insects, (b) cats, (c) toads, (d) frogfish, and (e) owls, respectively.


Figure 2: Taxonomic structure of our proposed dataset, which illustrates the histogram distribution for the 5 super-classes and 70 sub-classes in our CoCOD8K.

CoCOD8K can be download from here[code:tdYx] or Google Drive .

2. Overview


Figure 3: An overview of our proposed BBNet. Specifically, our model contains three main modules, i.e., collaborative feature extraction (CFE), object feature search (OFS), and local-global refinement (LGR). The CFE and OFS modules are designed to explore subtle camouflaged object cues (f^{col} and f^{obj} ) from within image groups and within images, respectively. These two features are then integrated, and the LGR module is devised to enhance the representation of co-camouflaged features from both global and local perspectives. Combining the co-camouflaged feature (f^{lgr}) with backbone features (f3 and f4) via two simple decoders, the model provides accurate camouflaged object predictions from the given images. ×n denotes n iterations.).

3. Proposed Framework

3.1 Training/Testing

The training and testing experiments are conducted using PyTorch with a single GeForce NVIDIA GTX 1080 Ti of 5 GB Memory.

  1. Prerequisites:

Note that BBNet is only tested on Ubuntu OS with the following environments. It may work on other operating systems (i.e., Windows) as well but we do not guarantee that it will.

  • Creating a virtual environment in terminal: conda create -n BBNet python=3.6.
  • Installing necessary packages: PyTorch > 1.1, opencv-python
  1. Prepare the data:

    • downloading testing dataset and moving it into ./Dataset/TestDataset/.

    • downloading training/validation dataset and move it into ./Dataset/TrainDataset/.

    • downloading pre-trained weights and move it into ./pth/BBNet_pth.59, which can be found in here or Google Drive.

    • downloading Res2Net weights on ImageNet dataset download link or Google Drive.

  2. Training Configuration:

    • Assigning your costumed path, like --train_save and --train_path in train.py.

    • Just enjoy it via run python train.py in your terminal.

  3. Testing Configuration:

    • After you download all the pre-trained models and testing datasets, just run test.py to generate the final prediction map: replace your trained model directory (--pth).

    • Just enjoy it!

4.2 Evaluating your trained model:

You can evaluate the result maps using the tool from here or Google Drive

5. Citation

If you find this project useful, please consider citing:

@article{zhang2023collaborative,
title={Collaborative Camouflaged Object Detection: A Large-Scale Dataset and Benchmark},
author={Zhang, Cong and Bi, Hongbo and Xiang, Tian-Zhu and Wu, Ranwan and Tong, Jinghui and Wang, Xiufang},
journal={IEEE Transactions on Neural Networks and Learning Systems},
pages={1-15},
doi={10.1109/TNNLS.2023.3317091},
year={2023}
}

Releases

No releases published

Packages

No packages published

Languages