├── _readme_doc ├── CVPR1159_Mirror_detection_supplementary_material_2022.pdf ├── cvpr22_01159_poster.pdf ├── image-20220521183824498.png ├── image-20220522103830396.png ├── image-20220522165823713.png └── title.png ├── backbone └── resnext │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── resnext101_regular.cpython-36.pyc │ ├── resnext101_regular.cpython-37.pyc │ ├── resnext101_regular.cpython-38.pyc │ ├── resnext101_regular.cpython-39.pyc │ ├── resnext_101_32x4d_.cpython-36.pyc │ ├── resnext_101_32x4d_.cpython-37.pyc │ ├── resnext_101_32x4d_.cpython-38.pyc │ └── resnext_101_32x4d_.cpython-39.pyc │ ├── resnext101_regular.py │ └── resnext_101_32x4d_.py ├── crf.py ├── demo.bat ├── demo.py ├── evaluation.py ├── examples ├── input │ ├── 000000383267_0image.png │ ├── 334-East-77th-Street-17-9-1024x682.jpg │ ├── IMG_0455.jpg │ ├── Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.jpg │ ├── images (1).jpg │ ├── images (2).jpg │ ├── images.jpg │ ├── img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.jpg │ ├── istockphoto-464654162-612x612.jpg │ ├── istockphoto-513303832-612x612.jpg │ └── luxury-bathroom-design-ideas.jpg ├── mask_output │ ├── 334-East-77th-Street-17-9-1024x682.png │ ├── IMG_0455.png │ ├── Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.png │ ├── images (1).png │ ├── images (2).png │ ├── images.png │ ├── img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.png │ ├── istockphoto-464654162-612x612.png │ ├── istockphoto-513303832-612x612.png │ └── luxury-bathroom-design-ideas.png └── visual_output │ ├── 334-East-77th-Street-17-9-1024x682.png │ ├── IMG_0455.png │ ├── Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.png │ ├── images (1).png │ ├── images (2).png │ ├── images.png │ ├── img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.png │ ├── istockphoto-464654162-612x612.png │ ├── istockphoto-513303832-612x612.png │ └── luxury-bathroom-design-ideas.png ├── model ├── CBAM.py ├── GNN.py ├── R50MGSeg25.py ├── ResNeXt101_MG.py ├── __pycache__ │ ├── CBAM.cpython-39.pyc │ ├── GNN.cpython-39.pyc │ ├── R50MGSeg25.cpython-39.pyc │ ├── ResNeXt101_MG.cpython-39.pyc │ ├── architecture.cpython-39.pyc │ └── multiGrid.cpython-39.pyc ├── architecture.py └── multiGrid.py ├── readme.md └── visual.py /_readme_doc/CVPR1159_Mirror_detection_supplementary_material_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/_readme_doc/CVPR1159_Mirror_detection_supplementary_material_2022.pdf -------------------------------------------------------------------------------- /_readme_doc/cvpr22_01159_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/_readme_doc/cvpr22_01159_poster.pdf -------------------------------------------------------------------------------- /_readme_doc/image-20220521183824498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/_readme_doc/image-20220521183824498.png -------------------------------------------------------------------------------- /_readme_doc/image-20220522103830396.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/_readme_doc/image-20220522103830396.png -------------------------------------------------------------------------------- /_readme_doc/image-20220522165823713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/_readme_doc/image-20220522165823713.png -------------------------------------------------------------------------------- /_readme_doc/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/_readme_doc/title.png -------------------------------------------------------------------------------- /backbone/resnext/__init__.py: -------------------------------------------------------------------------------- 1 | from .resnext101_regular import ResNeXt101 2 | -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext101_regular.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext101_regular.cpython-36.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext101_regular.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext101_regular.cpython-37.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext101_regular.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext101_regular.cpython-38.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext101_regular.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext101_regular.cpython-39.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-36.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-37.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-38.pyc -------------------------------------------------------------------------------- /backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/__pycache__/resnext_101_32x4d_.cpython-39.pyc -------------------------------------------------------------------------------- /backbone/resnext/resnext101_regular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/resnext101_regular.py -------------------------------------------------------------------------------- /backbone/resnext/resnext_101_32x4d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/backbone/resnext/resnext_101_32x4d_.py -------------------------------------------------------------------------------- /crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/crf.py -------------------------------------------------------------------------------- /demo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/demo.bat -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/demo.py -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/evaluation.py -------------------------------------------------------------------------------- /examples/input/000000383267_0image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/000000383267_0image.png -------------------------------------------------------------------------------- /examples/input/334-East-77th-Street-17-9-1024x682.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/334-East-77th-Street-17-9-1024x682.jpg -------------------------------------------------------------------------------- /examples/input/IMG_0455.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/IMG_0455.jpg -------------------------------------------------------------------------------- /examples/input/Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.jpg -------------------------------------------------------------------------------- /examples/input/images (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/images (1).jpg -------------------------------------------------------------------------------- /examples/input/images (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/images (2).jpg -------------------------------------------------------------------------------- /examples/input/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/images.jpg -------------------------------------------------------------------------------- /examples/input/img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.jpg -------------------------------------------------------------------------------- /examples/input/istockphoto-464654162-612x612.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/istockphoto-464654162-612x612.jpg -------------------------------------------------------------------------------- /examples/input/istockphoto-513303832-612x612.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/istockphoto-513303832-612x612.jpg -------------------------------------------------------------------------------- /examples/input/luxury-bathroom-design-ideas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/input/luxury-bathroom-design-ideas.jpg -------------------------------------------------------------------------------- /examples/mask_output/334-East-77th-Street-17-9-1024x682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/334-East-77th-Street-17-9-1024x682.png -------------------------------------------------------------------------------- /examples/mask_output/IMG_0455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/IMG_0455.png -------------------------------------------------------------------------------- /examples/mask_output/Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.png -------------------------------------------------------------------------------- /examples/mask_output/images (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/images (1).png -------------------------------------------------------------------------------- /examples/mask_output/images (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/images (2).png -------------------------------------------------------------------------------- /examples/mask_output/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/images.png -------------------------------------------------------------------------------- /examples/mask_output/img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.png -------------------------------------------------------------------------------- /examples/mask_output/istockphoto-464654162-612x612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/istockphoto-464654162-612x612.png -------------------------------------------------------------------------------- /examples/mask_output/istockphoto-513303832-612x612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/istockphoto-513303832-612x612.png -------------------------------------------------------------------------------- /examples/mask_output/luxury-bathroom-design-ideas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/mask_output/luxury-bathroom-design-ideas.png -------------------------------------------------------------------------------- /examples/visual_output/334-East-77th-Street-17-9-1024x682.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/334-East-77th-Street-17-9-1024x682.png -------------------------------------------------------------------------------- /examples/visual_output/IMG_0455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/IMG_0455.png -------------------------------------------------------------------------------- /examples/visual_output/Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/Pair-of-gold-trimmed-mirrors-over-a-pair-of-pink-sinks-15993-870x520.png -------------------------------------------------------------------------------- /examples/visual_output/images (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/images (1).png -------------------------------------------------------------------------------- /examples/visual_output/images (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/images (2).png -------------------------------------------------------------------------------- /examples/visual_output/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/images.png -------------------------------------------------------------------------------- /examples/visual_output/img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/img-31-Post-9-63-Luxury-Custom-Bathroom-Design-Ideas.png -------------------------------------------------------------------------------- /examples/visual_output/istockphoto-464654162-612x612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/istockphoto-464654162-612x612.png -------------------------------------------------------------------------------- /examples/visual_output/istockphoto-513303832-612x612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/istockphoto-513303832-612x612.png -------------------------------------------------------------------------------- /examples/visual_output/luxury-bathroom-design-ideas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/examples/visual_output/luxury-bathroom-design-ideas.png -------------------------------------------------------------------------------- /model/CBAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/CBAM.py -------------------------------------------------------------------------------- /model/GNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/GNN.py -------------------------------------------------------------------------------- /model/R50MGSeg25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/R50MGSeg25.py -------------------------------------------------------------------------------- /model/ResNeXt101_MG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/ResNeXt101_MG.py -------------------------------------------------------------------------------- /model/__pycache__/CBAM.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/__pycache__/CBAM.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/GNN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/__pycache__/GNN.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/R50MGSeg25.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/__pycache__/R50MGSeg25.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/ResNeXt101_MG.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/__pycache__/ResNeXt101_MG.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/architecture.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/__pycache__/architecture.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/multiGrid.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/__pycache__/multiGrid.cpython-39.pyc -------------------------------------------------------------------------------- /model/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/architecture.py -------------------------------------------------------------------------------- /model/multiGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/model/multiGrid.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/readme.md -------------------------------------------------------------------------------- /visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanhuankang/CVPR22-Learning-Semantic-Associations-for-Mirror-Detection/HEAD/visual.py --------------------------------------------------------------------------------