Update README.md
Browse files
README.md
CHANGED
|
@@ -1,14 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
-
- en
|
| 4 |
pipeline_tag: object-detection
|
| 5 |
-
tags:
|
| 6 |
-
- code
|
| 7 |
---
|
| 8 |
# MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection.
|
| 9 |
This repository is for MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection, introduced in this [paper](https://huggingface.co/papers/2511.12810).
|
| 10 |
|
| 11 |
-
The model is built using PyTorch on an NVIDIA RTX A6000 GPU with a total memory size of 48 GB.
|
|
|
|
| 12 |
|
| 13 |
## Contents
|
| 14 |
1. [Introduction](#introduction)
|
|
@@ -21,11 +18,12 @@ The model is built using PyTorch on an NVIDIA RTX A6000 GPU with a total memory
|
|
| 21 |
9. [Acknowledgement](#acknowledgment)
|
| 22 |
|
| 23 |
## Introduction
|
| 24 |
-
|
|
|
|
| 25 |
## Network
|
| 26 |
This diagram illustrates the overall architecture of MSRNet.
|
| 27 |

|
| 28 |
-
|
| 29 |
|
| 30 |
## Data Preparation
|
| 31 |
In this research, we utilized four benchmark datasets for camouflaged object detection (CAMO, CHAMELEON, COD10K, and NC4K).
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
pipeline_tag: object-detection
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
# MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection.
|
| 5 |
This repository is for MSRNet: A Multi-Scale Recursive Network for Camouflaged Object Detection, introduced in this [paper](https://huggingface.co/papers/2511.12810).
|
| 6 |
|
| 7 |
+
The model is built using PyTorch on an NVIDIA RTX A6000 GPU with a total memory size of 48 GB.
|
| 8 |
+
The code is also available in our [GitHub](https://github.com/linaagh98/MSRNet) repository.
|
| 9 |
|
| 10 |
## Contents
|
| 11 |
1. [Introduction](#introduction)
|
|
|
|
| 18 |
9. [Acknowledgement](#acknowledgment)
|
| 19 |
|
| 20 |
## Introduction
|
| 21 |
+
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.
|
| 22 |
+
|
| 23 |
## Network
|
| 24 |
This diagram illustrates the overall architecture of MSRNet.
|
| 25 |

|
| 26 |
+

|
| 27 |
|
| 28 |
## Data Preparation
|
| 29 |
In this research, we utilized four benchmark datasets for camouflaged object detection (CAMO, CHAMELEON, COD10K, and NC4K).
|