Skip to content
Snippets Groups Projects
  1. May 30, 2023
  2. May 10, 2023
  3. May 08, 2023
    • zoulinxin's avatar
      [Feature] Add GDAL backend and Support LEVIR-CD Dataset (#2903) · 77591b9e
      zoulinxin authored
      ## Motivation
      
      For support with reading multiple remote sensing image formats, please
      refer to https://gdal.org/drivers/raster/index.html
      
      .
      
      Byte, UInt16, Int16, UInt32, Int32, Float32, Float64, CInt16, CInt32,
      CFloat32 and CFloat64 are supported for reading and writing.
      
      Support input of two images for change detection tasks, and support the
      LEVIR-CD dataset.
      
      ## Modification
      
      Add LoadSingleRSImageFromFile in 'mmseg/datasets/transforms/loading.py'.
      Load a single remote sensing image for object segmentation tasks.
      
      Add LoadMultipleRSImageFromFile in
      'mmseg/datasets/transforms/loading.py'.
      Load two remote sensing images for change detection tasks.
      
      Add ConcatCDInput  in 'mmseg/datasets/transforms/transforms.py'.
      Combine images that have been separately augmented for data enhancement.
      
      Add BaseCDDataset in 'mmseg/datasets/basesegdataset.py'
      Base class for datasets used in change detection tasks.
      
      ---------
      
      Co-authored-by: default avatarxiexinch <xiexinch@outlook.com>
      77591b9e
  4. Apr 26, 2023
    • JoshuaChou's avatar
      Fix typo in docs/en/user_guides/visualization_feature_map.md (#2951) · 3b072eb2
      JoshuaChou authored
      Motivation
      
      Typo in docs/en/user_guides/visualization_feature_map.md.
      
      Modification
      
      reature -> feature
      
      Checklist
      
      - [x] Pre-commit or other linting tools are used to fix the potential
      lint issues.
      - [x] The modification is covered by complete unit tests. If not, please
      add more unit test to ensure the correctness.
      - [x] If the modification has potential influence on downstream
      projects, this PR should be tested with downstream projects, like MMDet
      or MMDet3D.
      - [x] The documentation has been modified accordingly, like docstring or
      example tutorials.
      3b072eb2
  5. Apr 19, 2023
  6. Apr 13, 2023
  7. Mar 31, 2023
  8. Mar 30, 2023
  9. Mar 17, 2023
    • Miao Zheng's avatar
      [Features]Support dump segment predition (#2712) · ff95416c
      Miao Zheng authored
      ## Motivation
      
      1. It is used to save the segmentation predictions as files and upload
      these files to a test server
      
      ## Modification
      
      1. Add output_file and format only in `IoUMetric`
       
      ## BC-breaking (Optional)
      
      No
      
      ## Use cases (Optional)
      
      If this PR introduces a new feature, it is better to list some use cases
      here, and update the documentation.
      
      ## Checklist
      
      1. Pre-commit or other linting tools are used to fix the potential lint
      issues.
      3. The modification is covered by complete unit tests. If not, please
      add more unit test to ensure the correctness.
      4. If the modification has potential influence on downstream projects,
      this PR should be tested with downstream projects, like MMDet or
      MMDet3D.
      5. The documentation has been modified accordingly, like docstring or
      example tutorials.
      ff95416c
  10. Mar 15, 2023
    • Tianlong Ai's avatar
      [Datasets] Add Mapillary Vistas Datasets to MMSeg Core Package. (#2576) · 8c89ff3d
      Tianlong Ai authored
      
      ## [Datasets] Add Mapillary Vistas Datasets to MMSeg Core Package .
      ## Motivation
      Add Mapillary Vistas Datasets to core package.
      Old PR #2484 
      
      ## Modification
      - Add Mapillary Vistas Datasets to core package.
      - Delete `tools/datasets_convert/mapillary.py` , dataset does't need
      converting.
      - Add `schedule_240k.py`  config.
      - Add configs files.  
        ```none
        deeplabv3plus_r101-d8_4xb2-240k_mapillay_v1-512x1024.py
        deeplabv3plus_r101-d8_4xb2-240k_mapillay_v2-512x1024.py
        maskformer_swin-s_4xb2-240k_mapillary_v1-512x1024.py
        maskformer_swin-s_4xb2-240k_mapillary_v2-512x1024.py
        maskformer_r101-d8_4xb2-240k_mapillary_v1-512x1024.py
        maskformer_r101-d8_4xb2-240k_mapillary_v2-512x1024.py
        pspnet_r101-d8_4xb2-240k_mapillay_v1-512x1024.py
        pspnet_r101-d8_4xb2-240k_mapillay_v2-512x1024.py
        ```
      - Synchronized changes to `projects/mapillary_datasets`
      
      ---------
      
      Co-authored-by: default avatarMiao Zheng <76149310+MeowZheng@users.noreply.github.com>
      Co-authored-by: default avatarxiexinch <xiexinch@outlook.com>
      8c89ff3d
  11. Mar 07, 2023
  12. Mar 03, 2023
    • Miao Zheng's avatar
      aaa08dc4
    • Miao Zheng's avatar
      [Enhancement] Modify interface of MMSeginferencer and add docs (#2658) · 310ec4af
      Miao Zheng authored
      
      ## Motivation
      
      Make MMSeginferencer easier to be used
      
      ## Modification
      
      1. Add `_load_weights_to_model` to MMSeginferencer, it is for get
      `dataset_meta` from ckpt
      2. Modify and remove some parameters of `__call__`, `visualization` and
      `postprocess`
      3. Add function of save seg mask, remove dump pkl.
      4. Refine docstring of MMSeginferencer and SegLocalVisualizer
      5. Add the user documentation of MMSeginferencer
      
      ## BC-breaking (Optional)
      
      yes, remove some parameters, we need to discuss whether keep them with
      deprecated waring or just remove them as the MMSeginferencer just merged
      in mmseg a few days.
      
      Co-authored-by: default avatarxiexinch <xiexinch@outlook.com>
      310ec4af
  13. Feb 23, 2023
  14. Feb 03, 2023
  15. Jan 11, 2023
  16. Jan 06, 2023
  17. Dec 30, 2022
  18. Nov 01, 2022
  19. Oct 31, 2022
  20. Oct 08, 2022
  21. Sep 29, 2022
  22. Sep 16, 2022
  23. Sep 14, 2022
  24. Aug 31, 2022
    • Miao Zheng's avatar
      [Fix] README for mmseg 1.x (#2009) · 8f5dcc85
      Miao Zheng authored
      * [Fix] README for mmseg 1.x
      
      * typo
      
      * link and refine
      8f5dcc85
    • Miao Zheng's avatar
      [Refactor] Refine documentation (#1993) · 309528de
      Miao Zheng authored
      * [WIP] Refine documentation
      
      * get started done
      
      * config refine
      
      * train_test
      
      * refine user guides
      
      * add contribution
      
      * add contribution
      
      * refine visualization
      
      * advanced tutorial
      
      * advanced guides
      
      * tricks
      
      * refine zh doc
      
      * refactor changelog
      309528de
  25. Aug 29, 2022
  26. Aug 26, 2022
  27. Aug 24, 2022
  28. Aug 19, 2022
Loading