Skip to content
Snippets Groups Projects
  1. Jan 20, 2023
    • Leeinsn's avatar
      CodeCamp #141 [Feature] Add BioMedical3DRandomFlip. (#2404) · 7fc8ca03
      Leeinsn authored
      
      ## Motivation
      
      Support for biomedical 3d images augmentation.
      
      ## Modification
      
      Add BioMedical3DRandomFlip in mmseg/datasets/transforms/transforms.py.
      
      Co-authored-by: default avatarMeowZheng <meowzheng@outlook.com>
      7fc8ca03
    • Tianlong Ai's avatar
      CodeCamp #1555[Feature] Support Mapillary Vistas Dataset (#2484) · e394e2aa
      Tianlong Ai authored
      ## Support `Mapillary Vistas Dataset`
      
      ## Motivation
      
      Support  **`Mapillary Vistas Dataset`**
      Dataset Paper link : https://ieeexplore.ieee.org/document/9878466/
      Download and more information view
      https://www.mapillary.com/dataset/vistas
      
      
      ```
      @InProceedings{Neuhold_2017_ICCV,
      author = {Neuhold, Gerhard and Ollmann, Tobias and Rota Bulo, Samuel and Kontschieder, Peter},
      title = {The Mapillary Vistas Dataset for Semantic Understanding of Street Scenes},
      booktitle = {Proceedings of the IEEE International Conference on Computer Vision (ICCV)},
      month = {Oct},
      year = {2017}
      }
      ```
      
      ## Modification
      
      Add `Mapillary_dataset` in `mmsegmentation/projects`
      Add `configs/_base_/mapillary_v1_2.py` and
      `configs/_base_/mapillary_v2_0.py`
      Add `configs/deeplabv3plus_r18-d8_4xb2-80k_mapillay-512x1024.py` to test
      training and testing on Mapillary datasets
      Add `docs/en/user_guides/2_dataset_prepare.md` , add Mapillary Vistas
      Dataset Preparing and Structure.
      Add `tools/dataset_converters/mapillary.py` to convert RGB labels to
      Mask labels.
      
      Co-authored-by: default avatar谢昕辰 <xiexinch@outlook.com>
      e394e2aa
  2. Jan 19, 2023
  3. Jan 17, 2023
  4. Jan 13, 2023
    • 谢昕辰's avatar
      [Doc] Fix API document (#2483) · d505ec1c
      谢昕辰 authored
      ## Motivation
      
      As title.
      
      ## Modification
      
      - docs/en/api.rst
      - docs/zh_cn/api.rst
      - add `scipy` to readthedocs requirement.
      d505ec1c
  5. Jan 12, 2023
    • Tianlong Ai's avatar
      CodeCamp #151[Feature] Support HieraSeg on cityscapes (#2444) · ce09639a
      Tianlong Ai authored
      ## Support `HieraSeg` interface on `cityscapes`
      
      ## Motivation
      
      Support `HieraSeg` interface on cityscapes dataset  
      Paper link : https://ieeexplore.ieee.org/document/9878466/
      
      ```
      @article{li2022deep,
        title={Deep Hierarchical Semantic Segmentation},
        author={Li, Liulei and Zhou, Tianfei and Wang, Wenguan and Li, Jianwu and Yang, Yi},
        journal={CVPR},
        year={2022}
      }
      ```
      
      ## Modification
      
      Add `HieraSeg_Projects` on `projects/`
      Add `sep_aspp_contrast_head` decoder head.
      Add `HieraSeg` config.
      Add `hiera_loss`, `hiera_triplet_loss_cityscape`, `tree_triplet_loss`
      ce09639a
  6. Jan 11, 2023
    • Wencheng Wu's avatar
      [Feature] Add `gt_edge_map` field. (#2466) · 8dae9465
      Wencheng Wu authored
      ## Motivation
      
      The motivation of this PR is to add `gt_edge_map` field to support
      boundary loss.
      
      ## Modification
      
      - GenerateEdge
      Modify `gt_edge` field to `gt_edge_map`.
      
      - PackSegInputs
      Add `gt_edge_map` to data_sample.
      
      - stack_batch
      Pad `gt_edge_map` to max_shape.
      
      ## BC-breaking (Optional)
      
      No
      
      ## Use cases (Optional)
      
      Reference `GenerateEdge`.
      8dae9465
    • MengzhangLI's avatar
      [Doc] Update ZN dataset preparation of Synapse (#2465) · 546f3b5b
      MengzhangLI authored
      ## Motivation
      - Add Chinese version of Synapse dataset preparation.
      - Modify all `,` and `。` to `,` and `.` in
      `docs/zh_cn/user_guides/2_dataset_prepare.md`.
      546f3b5b
  7. Jan 10, 2023
  8. Jan 09, 2023
  9. Jan 06, 2023
  10. Jan 04, 2023
  11. Jan 03, 2023
  12. Jan 02, 2023
  13. Dec 31, 2022
    • Miao Zheng's avatar
      Bump 1.0.0rc3 (#2446) · 6eb1a95a
      Miao Zheng authored
      ## Motivation
      
      To release 1.0.0rc3  
      
      ## Modification
      
      1. Modify mmseg version 
      2. Add change log
      3. Modify README
      4. Modify faq 
      5. Revise docker file
      6eb1a95a
    • Miao Zheng's avatar
      [Fix]Fix pt version for merge stage test (#2449) · e727e92a
      Miao Zheng authored
      ## Motivation
      
      The conflict is caused by:
          The user requested torch==1.12.1+cpu
          torchvision 0.13.0+cpu depends on torch==1.12.0
      
      ## Modification
      
      modify the torch==1.12.0+cpu
      e727e92a
  14. Dec 30, 2022
  15. Dec 06, 2022
  16. Dec 05, 2022
  17. Dec 01, 2022
    • MengzhangLI's avatar
      [Feature] Support MaskFormer(NeurIPS'2021) in MMSeg 1.x (#2215) · 933e4d3c
      MengzhangLI authored
      * [Feature] Support MaskFormer(NeurIPS'2021) in MMSeg 1.x
      
      * add mmdet try except logic
      
      * refactor config files
      
      * add readme
      
      * fix config
      
      * update models & logs
      
      * add MMDET installation and fix info
      
      * fix comments
      
      * fix
      
      * fix config norm optimizer setting
      
      * update models & logs & unittest
      
      * add docstring of MaskFormerHead
      
      * wait for mmdet 3.0.0rc4
      
      * replace seg_mask with seg_logits & add docstring for batch_input_shape
      
      * use mmdet3.0.0rc4
      
      * fix readme and modify config comments
      
      * add mmdet installation in pr_stage_test.yml
      
      * update mmcv version in pr_stage_test.yml
      
      * add mmdet in build_cpu of pr_stage_test.yml
      
      * modify mmdet& mmcv installation in merge_stage_test.yml
      
      * fix typo
      
      * update test.yml
      
      * update test.yml
      933e4d3c
    • 谢昕辰's avatar
      [Fix] Fix the problem of post-processing not removing padding (#2367) · 925faea5
      谢昕辰 authored
      * add img_padding_size
      
      * minor change
      
      * add pad_shape to data_samples
      925faea5
    • MengzhangLI's avatar
      [Enchancement] Delete mmcls in runtime.txt in dev-1.x (#2368) · 90c816b6
      MengzhangLI authored
      * [Enchancement] Delete mmcls in runtime.txt in dev-1.x
      
      * fix mmcv minimal version
      90c816b6
Loading