├── README.md ├── cfg ├── BCDD.py ├── CDD.py └── __init__.py ├── dataset ├── __init__.py └── rs.py ├── example └── CDD │ ├── test.txt │ ├── train.txt │ ├── train │ ├── A │ │ └── 00000.jpg │ ├── B │ │ └── 00000.jpg │ └── out │ │ └── 00000.jpg │ └── val.txt ├── img └── p1.jpg ├── layer ├── __init__.py ├── function.py └── loss.py ├── model ├── __init__.py ├── files.py ├── model_store.py └── siameseNet │ ├── __init__.py │ ├── a.txt │ ├── attention.py │ ├── d_aa.py │ ├── dares.py │ ├── res.py │ ├── res50.py │ ├── resbase.py │ └── resnet.py ├── test.py ├── train.py └── utils ├── __init__.py ├── metric.py ├── transforms.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/README.md -------------------------------------------------------------------------------- /cfg/BCDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/cfg/BCDD.py -------------------------------------------------------------------------------- /cfg/CDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/cfg/CDD.py -------------------------------------------------------------------------------- /cfg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/dataset/rs.py -------------------------------------------------------------------------------- /example/CDD/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/example/CDD/test.txt -------------------------------------------------------------------------------- /example/CDD/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/example/CDD/train.txt -------------------------------------------------------------------------------- /example/CDD/train/A/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/example/CDD/train/A/00000.jpg -------------------------------------------------------------------------------- /example/CDD/train/B/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/example/CDD/train/B/00000.jpg -------------------------------------------------------------------------------- /example/CDD/train/out/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/example/CDD/train/out/00000.jpg -------------------------------------------------------------------------------- /example/CDD/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/example/CDD/val.txt -------------------------------------------------------------------------------- /img/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/img/p1.jpg -------------------------------------------------------------------------------- /layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layer/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/layer/function.py -------------------------------------------------------------------------------- /layer/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/layer/loss.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/files.py -------------------------------------------------------------------------------- /model/model_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/model_store.py -------------------------------------------------------------------------------- /model/siameseNet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/siameseNet/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/siameseNet/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/siameseNet/attention.py -------------------------------------------------------------------------------- /model/siameseNet/d_aa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/siameseNet/d_aa.py -------------------------------------------------------------------------------- /model/siameseNet/dares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/siameseNet/dares.py -------------------------------------------------------------------------------- /model/siameseNet/res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/siameseNet/res.py -------------------------------------------------------------------------------- /model/siameseNet/res50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/siameseNet/res50.py -------------------------------------------------------------------------------- /model/siameseNet/resbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/siameseNet/resbase.py -------------------------------------------------------------------------------- /model/siameseNet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/model/siameseNet/resnet.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/utils/transforms.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehaifeng/DASNet/HEAD/utils/utils.py --------------------------------------------------------------------------------