Enhance model card: Add pipeline tag, paper & GitHub links, summarize abstract, update image paths
#1
by nielsr HF Staff - opened
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
|
|
|
|
| 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
|
| 18 |
|
| 19 |
## Network
|
| 20 |
This diagram illustrates the overall architecture of MSRNet.
|
| 21 |
-

|
| 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 |
-

|
| 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 |
+

|
| 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 |
+

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.
|