├── .assets ├── Content-aware │ ├── Ablation.png │ ├── Feature_extractor.png │ ├── Homography estimator.png │ ├── Mask predictor.png │ ├── Mask_result.png │ ├── Network structure.png │ ├── Triplet loss.png │ ├── comparison.png │ ├── dataset.png │ ├── exp_1.png │ ├── exp_2.png │ └── exp_3.png ├── DeepHomography │ ├── 4points_parameterization.png │ ├── Classification HomographyNet.png │ ├── Deep Image Homography Estimation.png │ ├── Regression HomographyNet.png │ ├── Training Data Generation.png │ └── experiment result.png ├── Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography │ ├── Edge-Preserved Deformation Network.png │ ├── Large-Baseline Deep Homography Network.png │ ├── Size-Free Stitching.png │ ├── ex1.png │ ├── ex2.png │ ├── ex3.png │ ├── fusion block.png │ └── residual homography offsets.png ├── Real_Time_Image_Stitching │ ├── cameraSystem0.png │ ├── cameraSystem1.png │ ├── cameraSystem2.png │ ├── cameraSystem3.png │ └── netArchitecture.png ├── Unsupervised │ ├── Photometric loss.png │ ├── experiment_1.png │ ├── experiment_2.png │ ├── experiment_3.png │ ├── experiment_4.png │ ├── network structure.png │ ├── pipeline1.png │ └── pipeline2.png ├── VFISnet │ ├── ContentRevision.png │ ├── HEstimation.png │ ├── datasetGen.png │ └── structureStitching.png └── deepmeshflow │ ├── ex.png │ ├── mask.png │ ├── meshflowMask.png │ ├── network.png │ ├── result1.png │ └── result2.png ├── .idea ├── .gitignore ├── DeepHomographyEstimation.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── dataset ├── Content-Aware-DeepH-Data │ └── test ├── Synthetic Dataset │ └── test ├── UDIS-D │ ├── test │ │ └── test │ └── train │ │ ├── input1 │ │ ├── 003001.jpg │ │ ├── 003118.jpg │ │ ├── 004295.jpg │ │ ├── 005334.jpg │ │ └── 009194.jpg │ │ └── input2 │ │ ├── 003001.jpg │ │ ├── 003118.jpg │ │ ├── 004295.jpg │ │ ├── 005334.jpg │ │ └── 009194.jpg └── dataset_info.md └── doc ├── Content-aware.md ├── DeepHomographyEstimation.md ├── DeepMeshFlow.md ├── Depth-aware.md ├── Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography.md ├── Real_Time_Image_Stitching.md ├── Unsupervised_deephomo.md └── VFISnet.md /.assets/Content-aware/Ablation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/Ablation.png -------------------------------------------------------------------------------- /.assets/Content-aware/Feature_extractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/Feature_extractor.png -------------------------------------------------------------------------------- /.assets/Content-aware/Homography estimator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/Homography estimator.png -------------------------------------------------------------------------------- /.assets/Content-aware/Mask predictor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/Mask predictor.png -------------------------------------------------------------------------------- /.assets/Content-aware/Mask_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/Mask_result.png -------------------------------------------------------------------------------- /.assets/Content-aware/Network structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/Network structure.png -------------------------------------------------------------------------------- /.assets/Content-aware/Triplet loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/Triplet loss.png -------------------------------------------------------------------------------- /.assets/Content-aware/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/comparison.png -------------------------------------------------------------------------------- /.assets/Content-aware/dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/dataset.png -------------------------------------------------------------------------------- /.assets/Content-aware/exp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/exp_1.png -------------------------------------------------------------------------------- /.assets/Content-aware/exp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/exp_2.png -------------------------------------------------------------------------------- /.assets/Content-aware/exp_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Content-aware/exp_3.png -------------------------------------------------------------------------------- /.assets/DeepHomography/4points_parameterization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/DeepHomography/4points_parameterization.png -------------------------------------------------------------------------------- /.assets/DeepHomography/Classification HomographyNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/DeepHomography/Classification HomographyNet.png -------------------------------------------------------------------------------- /.assets/DeepHomography/Deep Image Homography Estimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/DeepHomography/Deep Image Homography Estimation.png -------------------------------------------------------------------------------- /.assets/DeepHomography/Regression HomographyNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/DeepHomography/Regression HomographyNet.png -------------------------------------------------------------------------------- /.assets/DeepHomography/Training Data Generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/DeepHomography/Training Data Generation.png -------------------------------------------------------------------------------- /.assets/DeepHomography/experiment result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/DeepHomography/experiment result.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/Edge-Preserved Deformation Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/Edge-Preserved Deformation Network.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/Large-Baseline Deep Homography Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/Large-Baseline Deep Homography Network.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/Size-Free Stitching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/Size-Free Stitching.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/ex1.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/ex2.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/ex3.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/fusion block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/fusion block.png -------------------------------------------------------------------------------- /.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/residual homography offsets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography/residual homography offsets.png -------------------------------------------------------------------------------- /.assets/Real_Time_Image_Stitching/cameraSystem0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Real_Time_Image_Stitching/cameraSystem0.png -------------------------------------------------------------------------------- /.assets/Real_Time_Image_Stitching/cameraSystem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Real_Time_Image_Stitching/cameraSystem1.png -------------------------------------------------------------------------------- /.assets/Real_Time_Image_Stitching/cameraSystem2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Real_Time_Image_Stitching/cameraSystem2.png -------------------------------------------------------------------------------- /.assets/Real_Time_Image_Stitching/cameraSystem3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Real_Time_Image_Stitching/cameraSystem3.png -------------------------------------------------------------------------------- /.assets/Real_Time_Image_Stitching/netArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Real_Time_Image_Stitching/netArchitecture.png -------------------------------------------------------------------------------- /.assets/Unsupervised/Photometric loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/Photometric loss.png -------------------------------------------------------------------------------- /.assets/Unsupervised/experiment_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/experiment_1.png -------------------------------------------------------------------------------- /.assets/Unsupervised/experiment_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/experiment_2.png -------------------------------------------------------------------------------- /.assets/Unsupervised/experiment_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/experiment_3.png -------------------------------------------------------------------------------- /.assets/Unsupervised/experiment_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/experiment_4.png -------------------------------------------------------------------------------- /.assets/Unsupervised/network structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/network structure.png -------------------------------------------------------------------------------- /.assets/Unsupervised/pipeline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/pipeline1.png -------------------------------------------------------------------------------- /.assets/Unsupervised/pipeline2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/Unsupervised/pipeline2.png -------------------------------------------------------------------------------- /.assets/VFISnet/ContentRevision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/VFISnet/ContentRevision.png -------------------------------------------------------------------------------- /.assets/VFISnet/HEstimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/VFISnet/HEstimation.png -------------------------------------------------------------------------------- /.assets/VFISnet/datasetGen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/VFISnet/datasetGen.png -------------------------------------------------------------------------------- /.assets/VFISnet/structureStitching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/VFISnet/structureStitching.png -------------------------------------------------------------------------------- /.assets/deepmeshflow/ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/deepmeshflow/ex.png -------------------------------------------------------------------------------- /.assets/deepmeshflow/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/deepmeshflow/mask.png -------------------------------------------------------------------------------- /.assets/deepmeshflow/meshflowMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/deepmeshflow/meshflowMask.png -------------------------------------------------------------------------------- /.assets/deepmeshflow/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/deepmeshflow/network.png -------------------------------------------------------------------------------- /.assets/deepmeshflow/result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/deepmeshflow/result1.png -------------------------------------------------------------------------------- /.assets/deepmeshflow/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.assets/deepmeshflow/result2.png -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/DeepHomographyEstimation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.idea/DeepHomographyEstimation.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/README.md -------------------------------------------------------------------------------- /dataset/Content-Aware-DeepH-Data/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset/Synthetic Dataset/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset/UDIS-D/test/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input1/003001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input1/003001.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input1/003118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input1/003118.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input1/004295.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input1/004295.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input1/005334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input1/005334.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input1/009194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input1/009194.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input2/003001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input2/003001.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input2/003118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input2/003118.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input2/004295.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input2/004295.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input2/005334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input2/005334.jpg -------------------------------------------------------------------------------- /dataset/UDIS-D/train/input2/009194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/UDIS-D/train/input2/009194.jpg -------------------------------------------------------------------------------- /dataset/dataset_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/dataset/dataset_info.md -------------------------------------------------------------------------------- /doc/Content-aware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/doc/Content-aware.md -------------------------------------------------------------------------------- /doc/DeepHomographyEstimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/doc/DeepHomographyEstimation.md -------------------------------------------------------------------------------- /doc/DeepMeshFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/doc/DeepMeshFlow.md -------------------------------------------------------------------------------- /doc/Depth-aware.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/doc/Learning_Edge-Preserved_Image_Stitching_from_Large-Baseline_Deep_Homography.md -------------------------------------------------------------------------------- /doc/Real_Time_Image_Stitching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/doc/Real_Time_Image_Stitching.md -------------------------------------------------------------------------------- /doc/Unsupervised_deephomo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/doc/Unsupervised_deephomo.md -------------------------------------------------------------------------------- /doc/VFISnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leeing98/DeepHomographyEstimation/HEAD/doc/VFISnet.md --------------------------------------------------------------------------------