Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aim-uofa/Matcher
[ICLR'24] Matcher: Segment Anything with One Shot Using All-Purpose Feature Matching
https://github.com/aim-uofa/Matcher
dinov2 generalist-model in-context-segmentation matcher sam
Last synced: about 2 months ago
JSON representation
[ICLR'24] Matcher: Segment Anything with One Shot Using All-Purpose Feature Matching
- Host: GitHub
- URL: https://github.com/aim-uofa/Matcher
- Owner: aim-uofa
- License: other
- Created: 2023-05-20T05:36:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-10T04:49:27.000Z (6 months ago)
- Last Synced: 2024-11-29T14:13:18.235Z (about 2 months ago)
- Topics: dinov2, generalist-model, in-context-segmentation, matcher, sam
- Language: Python
- Homepage: https://arxiv.org/abs/2305.13310
- Size: 25.9 MB
- Stars: 451
- Watchers: 27
- Forks: 26
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Segment-Anything - [code
README
Matcher: Segment Anything with One Shot Using All-Purpose Feature Matching
[Yang Liu](https://scholar.google.com/citations?user=9JcQ2hwAAAAJ&hl=en)1*,
[Muzhi Zhu](https://scholar.google.com/citations?user=064gBH4AAAAJ&hl=en)1*,
Hengtao Li1*,
[Hao Chen](https://stan-haochen.github.io/)1,
[Xinlong Wang](https://www.xloong.wang/)2,
[Chunhua Shen](https://cshen.github.io/)11[Zhejiang University](https://www.zju.edu.cn/english/),
2[Beijing Academy of Artificial Intelligence](https://www.baai.ac.cn/english.html)ICLR 2024
## 🚀 Overview
## 📖 Description
Powered by large-scale pre-training, vision foundation models exhibit significant potential in open-world image understanding. However, unlike large language models that excel at directly
tackling various language tasks, vision foundation models require a task-specific model structure followed by fine-tuning on specific tasks. In this work, we present **Matcher**,
a novel perception paradigm that utilizes off-the-shelf vision foundation models to address various perception tasks. Matcher can segment anything by using an in-context example without training.
Additionally, we design three effective components within the Matcher framework to collaborate with these foundation models and unleash their full potential in diverse perception tasks.
Matcher demonstrates impressive generalization performance across various segmentation tasks, all without training. Our visualization results further showcase the open-world generality and flexibility of Matcher when applied to images in the wild.[Paper](https://arxiv.org/abs/2305.13310)
## ℹ️ News
- 2024.1 Matcher has been accepted to ICLR 2024!
- 2024.1 Matcher supports [Semantic-SAM](https://github.com/UX-Decoder/Semantic-SAM) for better part segmentation.
- 2024.1 We provide a Gradio Demo.
- 2024.1 Release code of one-shot semantic segmentation and one-shot part segmentation tasks.## 🗓️ TODO
- [x] Gradio Demo
- [x] Release code of one-shot semantic segmentation and one-shot part segmentation tasks
- [ ] Release code and models for VOS## 🏗️ Installation
See [installation instructions](INSTALL.md).
## 👻 Getting Started
See [Preparing Datasets for Matcher](datasets/README.md).
See [Getting Started with Matcher](GETTING_STARTED.md).
## 🖼️ Demo
### One-Shot Semantic Segmantation
### One-Shot Object Part Segmantation
### Cross-Style Object and Object Part Segmentation
### Controllable Mask Output
### Video Object Segmentation
https://github.com/aim-uofa/Matcher/assets/119775808/9ff9502d-7d2a-43bc-a8ef-01235097d62b
## 🎫 License
For academic use, this project is licensed under [the 2-clause BSD License](https://opensource.org/license/bsd-2-clause).
For commercial use, please contact [Chunhua Shen](mailto:[email protected]).## 🖊️ Citation
If you find this project useful in your research, please consider to cite:
```BibTeX
@article{liu2023matcher,
title={Matcher: Segment Anything with One Shot Using All-Purpose Feature Matching},
author={Liu, Yang and Zhu, Muzhi and Li, Hengtao and Chen, Hao and Wang, Xinlong and Shen, Chunhua},
journal={arXiv preprint arXiv:2305.13310},
year={2023}
}
```## Acknowledgement
[SAM](https://github.com/facebookresearch/segment-anything), [DINOv2](https://github.com/facebookresearch/dinov2), [SegGPT](https://github.com/baaivision/Painter/tree/main/SegGPT), [HSNet](https://github.com/juhongm999/hsnet), [Semantic-SAM](https://github.com/UX-Decoder/Semantic-SAM) and [detectron2](https://github.com/facebookresearch/detectron2).