├── README.md ├── border_effect.JPG ├── code ├── dataloader.py ├── homography_CNN_real.py ├── homography_CNN_synthetic.py ├── homography_conventional_real.py ├── homography_conventional_synthetic.py ├── homography_model.py └── utils │ ├── RANSAC_homography.py │ ├── __init__.py │ ├── direct_homography.py │ ├── gen_real_data.py │ ├── gen_synthetic_data.py │ ├── numpy_spatial_transformer.py │ ├── tf_spatial_transformer.py │ └── utils.py ├── models └── download_models.md ├── requirements.txt └── teaser.JPG /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/README.md -------------------------------------------------------------------------------- /border_effect.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/border_effect.JPG -------------------------------------------------------------------------------- /code/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/dataloader.py -------------------------------------------------------------------------------- /code/homography_CNN_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/homography_CNN_real.py -------------------------------------------------------------------------------- /code/homography_CNN_synthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/homography_CNN_synthetic.py -------------------------------------------------------------------------------- /code/homography_conventional_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/homography_conventional_real.py -------------------------------------------------------------------------------- /code/homography_conventional_synthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/homography_conventional_synthetic.py -------------------------------------------------------------------------------- /code/homography_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/homography_model.py -------------------------------------------------------------------------------- /code/utils/RANSAC_homography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/RANSAC_homography.py -------------------------------------------------------------------------------- /code/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/__init__.py -------------------------------------------------------------------------------- /code/utils/direct_homography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/direct_homography.py -------------------------------------------------------------------------------- /code/utils/gen_real_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/gen_real_data.py -------------------------------------------------------------------------------- /code/utils/gen_synthetic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/gen_synthetic_data.py -------------------------------------------------------------------------------- /code/utils/numpy_spatial_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/numpy_spatial_transformer.py -------------------------------------------------------------------------------- /code/utils/tf_spatial_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/tf_spatial_transformer.py -------------------------------------------------------------------------------- /code/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/code/utils/utils.py -------------------------------------------------------------------------------- /models/download_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/models/download_models.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/requirements.txt -------------------------------------------------------------------------------- /teaser.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tynguyen/unsupervisedDeepHomographyRAL2018/HEAD/teaser.JPG --------------------------------------------------------------------------------