Enhance model card: Add pipeline tag, paper & GitHub links, summarize abstract, update image paths

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +10 -10
README.md CHANGED
@@ -1,5 +1,10 @@
 
 
 
 
1
  # MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection.
2
- This repository is for MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection, introduced in this [paper](http://arxiv.org/abs/2511.12810).
 
3
 
4
  The model is built using PyTorch on an NVIDIA RTX A6000 GPU with a total memory size of 48 GB.
5
 
@@ -14,11 +19,11 @@ The model is built using PyTorch on an NVIDIA RTX A6000 GPU with a total memory
14
  9. [Acknowledgement](#acknowledgment)
15
 
16
  ## Introduction
17
- Camouflaged object detection is an emerging and challenging computer vision task that requires identifying and segmenting objects that blend seamlessly into their environments due to high similarity in color, texture, and size. This task is further complicated by low-light conditions, partial occlusion, small object size, intricate background patterns, and the presence of multiple objects. While many sophisticated methods have been proposed for this task, current methods still struggle to precisely detect camouflaged objects in complex scenarios, especially with small and multiple objects, indicating room for improvement. We propose a Multi-Scale Recursive Network that extracts multi-scale features using a Pyramid Vision Transformer backbone and combines these features through specialized Attention-Based Scale Integration Units, allowing for selective feature merging. For more precise object detection, our decoder recursively refines features by incorporating Multi-Granularity Fusion Units. A novel recursive-feedback decoding strategy is developed to enhance global context understanding, helping the model overcome the challenges in this task. By jointly leveraging multi-scale learning and recursive feature optimization, our proposed method achieves performance gains, successfully detecting small and multiple camouflaged objects. Our model achieves state-of-the-art results on two benchmark camouflaged object detection datasets and ranks second on the remaining two.
18
 
19
  ## Network
20
  This diagram illustrates the overall architecture of MSRNet.
21
- ![Methodology](Images/MethodologyDiagram.png)
22
 
23
  ## Data Preparation
24
  In this research, we utilized four benchmark datasets for camouflaged object detection (CAMO, CHAMELEON, COD10K, and NC4K).
@@ -115,14 +120,9 @@ The prediction results of our highest-performing model (PvtV2B4_MSRNet) on [CAMO
115
  ### MSRNet Visual Results
116
 
117
  A visual Comparison showing the superiority of MSRNet in detecting multiple (rows 1-3), small (rows 4 and 5), and tiny (rows 6 and 7) camouflaged objects.
118
- ![visual-Comparison](Images/VisualComparison.png)
119
-
120
-
121
-
122
-
123
-
124
 
125
 
126
 
127
  ## Acknowledgment
128
- This project builds upon the work of [Lart Pang](https://github.com/lartpang), incorporating key modifications to the decoding strategy and input scales to enhance its ability to detect small and multiple camouflaged objects.
 
1
+ ---
2
+ pipeline_tag: image-segmentation
3
+ ---
4
+
5
  # MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection.
6
+ This repository is for MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection, introduced in the paper [MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection](https://huggingface.co/papers/2511.12810).
7
+ Code: https://github.com/linaagh98/MSRNet
8
 
9
  The model is built using PyTorch on an NVIDIA RTX A6000 GPU with a total memory size of 48 GB.
10
 
 
19
  9. [Acknowledgement](#acknowledgment)
20
 
21
  ## Introduction
22
+ Camouflaged object detection (COD) is a challenging computer vision task that aims to identify and segment objects blending into their environment. MSRNet proposes a Multi-Scale Recursive Network to extract and combine multi-scale features, using a Pyramid Vision Transformer backbone and Attention-Based Scale Integration Units. Its decoder refines features recursively with Multi-Granularity Fusion Units and a novel recursive-feedback decoding strategy to enhance global context. This approach improves detection of small and multiple camouflaged objects, achieving state-of-the-art results on several benchmark datasets.
23
 
24
  ## Network
25
  This diagram illustrates the overall architecture of MSRNet.
26
+ ![Methodology](https://raw.githubusercontent.com/linaagh98/MSRNet/main/Images/MethodologyDiagram.png)
27
 
28
  ## Data Preparation
29
  In this research, we utilized four benchmark datasets for camouflaged object detection (CAMO, CHAMELEON, COD10K, and NC4K).
 
120
  ### MSRNet Visual Results
121
 
122
  A visual Comparison showing the superiority of MSRNet in detecting multiple (rows 1-3), small (rows 4 and 5), and tiny (rows 6 and 7) camouflaged objects.
123
+ ![visual-Comparison](https://raw.githubusercontent.com/linaagh98/MSRNet/main/Images/VisualComparison.png)
 
 
 
 
 
124
 
125
 
126
 
127
  ## Acknowledgment
128
+ This project builds upon the work of [Lart Pang](https://github.com/lartpang), incorporating key modifications to the decoding strategy and input scales to enhance its ability to detect small and multiple camouflaged objects.