├── .gitignore ├── LAM.py ├── ModelZoo ├── CARN │ ├── __init__.py │ ├── carn.py │ ├── carn_m.py │ └── ops.py ├── NN │ ├── MPNCOV │ │ ├── __init__.py │ │ └── python │ │ │ ├── MPNCOV.py │ │ │ └── __init__.py │ ├── __init__.py │ ├── base_networks_dbpn.py │ ├── common.py │ ├── dbpn.py │ ├── drln.py │ ├── drln_ops.py │ ├── edsr.py │ ├── fsrcnn.py │ ├── hat.py │ ├── rcan.py │ ├── rnan.py │ ├── rrdbnet.py │ ├── san.py │ └── swinir.py ├── __init__.py ├── models │ └── model_arch.py └── utils.py ├── README.md ├── SaliencyModel ├── BackProp.py ├── __init__.py ├── attributes.py └── utils.py ├── __init__.py └── test_images ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/.gitignore -------------------------------------------------------------------------------- /LAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/LAM.py -------------------------------------------------------------------------------- /ModelZoo/CARN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/CARN/__init__.py -------------------------------------------------------------------------------- /ModelZoo/CARN/carn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/CARN/carn.py -------------------------------------------------------------------------------- /ModelZoo/CARN/carn_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/CARN/carn_m.py -------------------------------------------------------------------------------- /ModelZoo/CARN/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/CARN/ops.py -------------------------------------------------------------------------------- /ModelZoo/NN/MPNCOV/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ModelZoo/NN/MPNCOV/python/MPNCOV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/MPNCOV/python/MPNCOV.py -------------------------------------------------------------------------------- /ModelZoo/NN/MPNCOV/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ModelZoo/NN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/__init__.py -------------------------------------------------------------------------------- /ModelZoo/NN/base_networks_dbpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/base_networks_dbpn.py -------------------------------------------------------------------------------- /ModelZoo/NN/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/common.py -------------------------------------------------------------------------------- /ModelZoo/NN/dbpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/dbpn.py -------------------------------------------------------------------------------- /ModelZoo/NN/drln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/drln.py -------------------------------------------------------------------------------- /ModelZoo/NN/drln_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/drln_ops.py -------------------------------------------------------------------------------- /ModelZoo/NN/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/edsr.py -------------------------------------------------------------------------------- /ModelZoo/NN/fsrcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/fsrcnn.py -------------------------------------------------------------------------------- /ModelZoo/NN/hat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/hat.py -------------------------------------------------------------------------------- /ModelZoo/NN/rcan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/rcan.py -------------------------------------------------------------------------------- /ModelZoo/NN/rnan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/rnan.py -------------------------------------------------------------------------------- /ModelZoo/NN/rrdbnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/rrdbnet.py -------------------------------------------------------------------------------- /ModelZoo/NN/san.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/san.py -------------------------------------------------------------------------------- /ModelZoo/NN/swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/NN/swinir.py -------------------------------------------------------------------------------- /ModelZoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/__init__.py -------------------------------------------------------------------------------- /ModelZoo/models/model_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/models/model_arch.py -------------------------------------------------------------------------------- /ModelZoo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/ModelZoo/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/README.md -------------------------------------------------------------------------------- /SaliencyModel/BackProp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/SaliencyModel/BackProp.py -------------------------------------------------------------------------------- /SaliencyModel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SaliencyModel/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/SaliencyModel/attributes.py -------------------------------------------------------------------------------- /SaliencyModel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/SaliencyModel/utils.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/test_images/1.png -------------------------------------------------------------------------------- /test_images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/test_images/2.png -------------------------------------------------------------------------------- /test_images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/test_images/3.png -------------------------------------------------------------------------------- /test_images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/test_images/4.png -------------------------------------------------------------------------------- /test_images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/test_images/5.png -------------------------------------------------------------------------------- /test_images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/test_images/6.png -------------------------------------------------------------------------------- /test_images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhh-pi/LAM/HEAD/test_images/7.png --------------------------------------------------------------------------------