@@ -89,11 +89,17 @@ MMSegmentation v1.x brings remarkable improvements over the 0.x release, offerin
8989
9090## What's New
9191
92- v1.1.2 was released on 09/20/2023.
93- Please refer to [ changelog.md] ( docs/en/notes/changelog.md ) for details and release history.
92+ v1.2.0 was released on 10/12/2023, from 1.1.0 to 1.2.0, we have added or updated the following features:
9493
95- - Support monocular depth estimation task, please refer to [ VPD] ( configs/vpd/README.md ) for more details.
96- - Add new projects: [ CAT-Seg] ( projects/CAT-Seg/README.md ) , [ PP-MobileSeg] ( projects/pp_mobileseg/README.md ) , [ AdaBins] ( projects/Adabins/README.md )
94+ ### Highlights
95+
96+ - Support for the open-vocabulary semantic segmentation algorithm [ SAN] ( configs/san/README.md )
97+
98+ - Support monocular depth estimation task, please refer to [ VPD] ( configs/vpd/README.md ) and [ Adabins] ( projects/Adabins/README.md ) for more details.
99+
100+ ![ depth estimation] ( https://github.com/open-mmlab/mmsegmentation/assets/15952744/07afd0e9-8ace-4a00-aa1e-5bf0ca92dcbc )
101+
102+ - Add new projects: open-vocabulary semantic segmentation algorithm [ CAT-Seg] ( projects/CAT-Seg/README.md ) , real-time semantic segmentation algofithm [ PP-MobileSeg] ( projects/pp_mobileseg/README.md )
97103
98104## Installation
99105
@@ -192,45 +198,46 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
192198<details open >
193199<summary >Supported methods:</summary >
194200
195- - [x] [ FCN (CVPR'2015/TPAMI'2017)] ( configs/fcn )
196- - [x] [ ERFNet (T-ITS'2017)] ( configs/erfnet )
197- - [x] [ UNet (MICCAI'2016/Nat. Methods'2019)] ( configs/unet )
198- - [x] [ PSPNet (CVPR'2017)] ( configs/pspnet )
199- - [x] [ DeepLabV3 (ArXiv'2017)] ( configs/deeplabv3 )
200- - [x] [ BiSeNetV1 (ECCV'2018)] ( configs/bisenetv1 )
201- - [x] [ PSANet (ECCV'2018)] ( configs/psanet )
202- - [x] [ DeepLabV3+ (CVPR'2018)] ( configs/deeplabv3plus )
203- - [x] [ UPerNet (ECCV'2018)] ( configs/upernet )
204- - [x] [ ICNet (ECCV'2018)] ( configs/icnet )
205- - [x] [ NonLocal Net (CVPR'2018)] ( configs/nonlocal_net )
206- - [x] [ EncNet (CVPR'2018)] ( configs/encnet )
207- - [x] [ Semantic FPN (CVPR'2019)] ( configs/sem_fpn )
208- - [x] [ DANet (CVPR'2019)] ( configs/danet )
209- - [x] [ APCNet (CVPR'2019)] ( configs/apcnet )
201+ - [x] [ SAN (CVPR'2023)] ( configs/san/ )
202+ - [x] [ VPD (ICCV'2023)] ( configs/vpd )
203+ - [x] [ DDRNet (T-ITS'2022)] ( configs/ddrnet )
204+ - [x] [ PIDNet (ArXiv'2022)] ( configs/pidnet )
205+ - [x] [ Mask2Former (CVPR'2022)] ( configs/mask2former )
206+ - [x] [ MaskFormer (NeurIPS'2021)] ( configs/maskformer )
207+ - [x] [ K-Net (NeurIPS'2021)] ( configs/knet )
208+ - [x] [ SegFormer (NeurIPS'2021)] ( configs/segformer )
209+ - [x] [ Segmenter (ICCV'2021)] ( configs/segmenter )
210+ - [x] [ DPT (ArXiv'2021)] ( configs/dpt )
211+ - [x] [ SETR (CVPR'2021)] ( configs/setr )
212+ - [x] [ STDC (CVPR'2021)] ( configs/stdc )
213+ - [x] [ BiSeNetV2 (IJCV'2021)] ( configs/bisenetv2 )
214+ - [x] [ CGNet (TIP'2020)] ( configs/cgnet )
215+ - [x] [ PointRend (CVPR'2020)] ( configs/point_rend )
216+ - [x] [ DNLNet (ECCV'2020)] ( configs/dnlnet )
217+ - [x] [ OCRNet (ECCV'2020)] ( configs/ocrnet )
218+ - [x] [ ISANet (ArXiv'2019/IJCV'2021)] ( configs/isanet )
219+ - [x] [ Fast-SCNN (ArXiv'2019)] ( configs/fastscnn )
220+ - [x] [ FastFCN (ArXiv'2019)] ( configs/fastfcn )
221+ - [x] [ GCNet (ICCVW'2019/TPAMI'2020)] ( configs/gcnet )
222+ - [x] [ ANN (ICCV'2019)] ( configs/ann )
210223- [x] [ EMANet (ICCV'2019)] ( configs/emanet )
211224- [x] [ CCNet (ICCV'2019)] ( configs/ccnet )
212225- [x] [ DMNet (ICCV'2019)] ( configs/dmnet )
213- - [x] [ ANN (ICCV'2019)] ( configs/ann )
214- - [x] [ GCNet (ICCVW'2019/TPAMI'2020)] ( configs/gcnet )
215- - [x] [ FastFCN (ArXiv'2019)] ( configs/fastfcn )
216- - [x] [ Fast-SCNN (ArXiv'2019)] ( configs/fastscnn )
217- - [x] [ ISANet (ArXiv'2019/IJCV'2021)] ( configs/isanet )
218- - [x] [ OCRNet (ECCV'2020)] ( configs/ocrnet )
219- - [x] [ DNLNet (ECCV'2020)] ( configs/dnlnet )
220- - [x] [ PointRend (CVPR'2020)] ( configs/point_rend )
221- - [x] [ CGNet (TIP'2020)] ( configs/cgnet )
222- - [x] [ BiSeNetV2 (IJCV'2021)] ( configs/bisenetv2 )
223- - [x] [ STDC (CVPR'2021)] ( configs/stdc )
224- - [x] [ SETR (CVPR'2021)] ( configs/setr )
225- - [x] [ DPT (ArXiv'2021)] ( configs/dpt )
226- - [x] [ Segmenter (ICCV'2021)] ( configs/segmenter )
227- - [x] [ SegFormer (NeurIPS'2021)] ( configs/segformer )
228- - [x] [ K-Net (NeurIPS'2021)] ( configs/knet )
229- - [x] [ MaskFormer (NeurIPS'2021)] ( configs/maskformer )
230- - [x] [ Mask2Former (CVPR'2022)] ( configs/mask2former )
231- - [x] [ PIDNet (ArXiv'2022)] ( configs/pidnet )
232- - [x] [ DDRNet (T-ITS'2022)] ( configs/ddrnet )
233- - [x] [ VPD (ICCV'2023)] ( configs/vpd )
226+ - [x] [ Semantic FPN (CVPR'2019)] ( configs/sem_fpn )
227+ - [x] [ DANet (CVPR'2019)] ( configs/danet )
228+ - [x] [ APCNet (CVPR'2019)] ( configs/apcnet )
229+ - [x] [ NonLocal Net (CVPR'2018)] ( configs/nonlocal_net )
230+ - [x] [ EncNet (CVPR'2018)] ( configs/encnet )
231+ - [x] [ DeepLabV3+ (CVPR'2018)] ( configs/deeplabv3plus )
232+ - [x] [ UPerNet (ECCV'2018)] ( configs/upernet )
233+ - [x] [ ICNet (ECCV'2018)] ( configs/icnet )
234+ - [x] [ PSANet (ECCV'2018)] ( configs/psanet )
235+ - [x] [ BiSeNetV1 (ECCV'2018)] ( configs/bisenetv1 )
236+ - [x] [ DeepLabV3 (ArXiv'2017)] ( configs/deeplabv3 )
237+ - [x] [ PSPNet (CVPR'2017)] ( configs/pspnet )
238+ - [x] [ ERFNet (T-ITS'2017)] ( configs/erfnet )
239+ - [x] [ UNet (MICCAI'2016/Nat. Methods'2019)] ( configs/unet )
240+ - [x] [ FCN (CVPR'2015/TPAMI'2017)] ( configs/fcn )
234241
235242</details >
236243
0 commit comments