mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
## 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: xiexinch <xiexinch@outlook.com>
32 lines
952 B
Python
32 lines
952 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
|
|
from mmseg.registry import DATASETS
|
|
from .basesegdataset import BaseCDDataset
|
|
|
|
|
|
@DATASETS.register_module()
|
|
class LEVIRCDDataset(BaseCDDataset):
|
|
"""ISPRS dataset.
|
|
|
|
In segmentation map annotation for ISPRS, 0 is to ignore index.
|
|
``reduce_zero_label`` should be set to True. The ``img_suffix`` and
|
|
``seg_map_suffix`` are both fixed to '.png'.
|
|
"""
|
|
|
|
METAINFO = dict(
|
|
classes=('background', 'changed'),
|
|
palette=[[0, 0, 0], [255, 255, 255]])
|
|
|
|
def __init__(self,
|
|
img_suffix='.png',
|
|
img_suffix2='.png',
|
|
seg_map_suffix='.png',
|
|
reduce_zero_label=False,
|
|
**kwargs) -> None:
|
|
super().__init__(
|
|
img_suffix=img_suffix,
|
|
img_suffix2=img_suffix2,
|
|
seg_map_suffix=seg_map_suffix,
|
|
reduce_zero_label=reduce_zero_label,
|
|
**kwargs)
|