{"id":13412174,"url":"https://github.com/sniklaus/3d-ken-burns","last_synced_at":"2025-05-14T14:07:59.080Z","repository":{"id":38374976,"uuid":"222578525","full_name":"sniklaus/3d-ken-burns","owner":"sniklaus","description":"an implementation of 3D Ken Burns Effect from a Single Image using PyTorch","archived":false,"fork":false,"pushed_at":"2025-01-06T01:04:56.000Z","size":382,"stargazers_count":1530,"open_issues_count":12,"forks_count":225,"subscribers_count":23,"default_branch":"master","last_synced_at":"2025-04-13T16:50:16.193Z","etag":null,"topics":["cuda","cupy","deep-learning","python","pytorch"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sniklaus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-19T01:12:34.000Z","updated_at":"2025-04-08T07:06:20.000Z","dependencies_parsed_at":"2024-03-01T18:26:38.924Z","dependency_job_id":"eacdc05a-fee9-473e-bb47-c377bc474287","html_url":"https://github.com/sniklaus/3d-ken-burns","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniklaus%2F3d-ken-burns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniklaus%2F3d-ken-burns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniklaus%2F3d-ken-burns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sniklaus%2F3d-ken-burns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sniklaus","download_url":"https://codeload.github.com/sniklaus/3d-ken-burns/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254159278,"owners_count":22024558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cuda","cupy","deep-learning","python","pytorch"],"created_at":"2024-07-30T20:01:21.791Z","updated_at":"2025-05-14T14:07:59.053Z","avatar_url":"https://github.com/sniklaus.png","language":"Python","funding_links":[],"categories":["Python","RGB-D Datasets \u003ca id=\"list\" class=\"anchor\" href=\"#list\" aria-hidden=\"true\"\u003e\u003cspan class=\"octicon octicon-link\"\u003e\u003c/span\u003e\u003c/a\u003e"],"sub_categories":[],"readme":"# 3d-ken-burns\nThis is a reference implementation of 3D Ken Burns Effect from a Single Image [1] using PyTorch. Given a single input image, it animates this still image with a virtual camera scan and zoom subject to motion parallax. Should you be making use of our work, please cite our paper [1].\n\n\u003ca href=\"https://arxiv.org/abs/1909.05483\"\u003e\u003cimg src=\"http://content.sniklaus.com/kenburns/paper.jpg\" alt=\"Paper\" width=\"100%\"\u003e\u003c/a\u003e\n\nFor some interesting related work, please see: https://github.com/pierlj/ken-burns-effect\n\u003cbr /\u003e\nFor some interesting discussions, please see: https://news.ycombinator.com/item?id=20978055\n\n## setup\nSeveral functions are implemented in CUDA using CuPy, which is why CuPy is a required dependency. It can be installed using `pip install cupy` or alternatively using one of the provided [binary packages](https://docs.cupy.dev/en/stable/install.html#installing-cupy) as outlined in the CuPy repository. Please also make sure to have the `CUDA_HOME` environment variable configured.\n\nIn order to generate the video results, please also make sure to have `pip install moviepy` installed.\n\n## usage\nTo run it on an image and generate the 3D Ken Burns effect fully automatically, use the following command.\n\n```\npython autozoom.py --in ./images/doublestrike.jpg --out ./autozoom.mp4\n```\n\nTo start the interface that allows you to manually adjust the camera path, use the following command. You can then navigate to `http://localhost:8080/` and load an image using the button on the bottom right corner. Please be patient when loading an image and saving the result, there is a bit of background processing going on.\n\n```\npython interface.py\n```\n\nTo run the depth estimation to obtain the raw depth estimate, use the following command. Please note that this script does not perform the depth adjustment, see [#22](https://github.com/sniklaus/3d-ken-burns/issues/22) for information on how to add it.\n\n```\npython depthestim.py --in ./images/doublestrike.jpg --out ./depthestim.npy\n```\n\nTo benchmark the depth estimation, run `python benchmark-ibims.py` or `python benchmark-nyu.py`. You can use it to easily verify that the provided implementation runs as expected.\n\n## colab\nIf you do not have a suitable environment to run this projects then you could give Colab a try. It allows you to run the project in the cloud. There are several people who provide Colab notebooks that should get you started. A few that I am aware of include one from [Arnaldo Gabriel](https://colab.research.google.com/github/agmm/colab-3d-ken-burns/blob/master/automatic-3d-ken-burns.ipynb), one from [Vlad Alex](https://towardsdatascience.com/very-spatial-507aa847179d), and one from [Ahmed Harmouche](https://github.com/wpmed92/3d-ken-burns-colab).\n\n## dataset\nThis dataset is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) and may only be used for non-commercial purposes. Please see the LICENSE file for more information.\n\n| scene | mode | color | depth | normal |\n|:------|:-----|------:|------:|-------:|\n| asdf | flying | [3.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/asdf-flying.zip) | [1.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/asdf-flying-depth.zip) | [2.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/asdf-flying-normal.zip) |\n| asdf | walking | [3.6 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/asdf-walking.zip) | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/asdf-walking-depth.zip) | [2.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/asdf-walking-normal.zip) |\n| blank | flying | [3.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/blank-flying.zip) | [1.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/blank-flying-depth.zip) | [2.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/blank-flying-normal.zip) |\n| blank | walking | [3.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/blank-walking.zip) | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/blank-walking-depth.zip) | [2.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/blank-walking-normal.zip) |\n| chill | flying | [5.4 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/chill-flying.zip) | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/chill-flying-depth.zip) | [10.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/chill-flying-normal.zip) |\n| chill | walking | [5.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/chill-walking.zip) | [1.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/chill-walking-depth.zip) | [10.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/chill-walking-normal.zip) |\n| city | flying | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/city-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/city-flying-depth.zip) | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/city-flying-normal.zip) |\n| city | walking | [0.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/city-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/city-walking-depth.zip) | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/city-walking-normal.zip) |\n| environment | flying | [1.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/environment-flying.zip) | [0.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/environment-flying-depth.zip) | [3.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/environment-flying-normal.zip) |\n| environment | walking | [1.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/environment-walking.zip) | [0.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/environment-walking-depth.zip) | [3.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/environment-walking-normal.zip) |\n| fort | flying | [5.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/fort-flying.zip) | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/fort-flying-depth.zip) | [9.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/fort-flying-normal.zip) |\n| fort | walking | [4.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/fort-walking.zip) | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/fort-walking-depth.zip) | [9.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/fort-walking-normal.zip) |\n| grass | flying | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/grass-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/grass-flying-depth.zip) | [1.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/grass-flying-normal.zip) |\n| grass | walking | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/grass-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/grass-walking-depth.zip) | [1.6 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/grass-walking-normal.zip) |\n| ice | flying | [1.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/ice-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/ice-flying-depth.zip) | [2.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/ice-flying-normal.zip) |\n| ice | walking | [1.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/ice-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/ice-walking-depth.zip) | [2.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/ice-walking-normal.zip) |\n| knights | flying | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/knights-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/knights-flying-depth.zip) | [1.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/knights-flying-normal.zip) |\n| knights | walking | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/knights-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/knights-walking-depth.zip) | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/knights-walking-normal.zip) |\n| outpost | flying | [4.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/outpost-flying.zip) | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/outpost-flying-depth.zip) | [7.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/outpost-flying-normal.zip) |\n| outpost | walking | [4.6 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/outpost-walking.zip) | [1.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/outpost-walking-depth.zip) | [7.4 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/outpost-walking-normal.zip) |\n| pirates | flying | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/pirates-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/pirates-flying-depth.zip) | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/pirates-flying-normal.zip) |\n| pirates | walking | [0.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/pirates-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/pirates-walking-depth.zip) | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/pirates-walking-normal.zip) |\n| shooter | flying | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shooter-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shooter-flying-depth.zip) | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shooter-flying-normal.zip) |\n| shooter | walking | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shooter-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shooter-walking-depth.zip) | [1.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shooter-walking-normal.zip) |\n| shops | flying | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shops-flying.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shops-flying-depth.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shops-flying-normal.zip) |\n| shops | walking | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shops-walking.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shops-walking-depth.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/shops-walking-normal.zip) |\n| slums | flying | [0.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/slums-flying.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/slums-flying-depth.zip) | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/slums-flying-normal.zip) |\n| slums | walking | [0.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/slums-walking.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/slums-walking-depth.zip) | [0.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/slums-walking-normal.zip) |\n| subway | flying | [0.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/subway-flying.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/subway-flying-depth.zip) | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/subway-flying-normal.zip) |\n| subway | walking | [0.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/subway-walking.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/subway-walking-depth.zip) | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/subway-walking-normal.zip) |\n| temple | flying | [1.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/temple-flying.zip) | [0.4 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/temple-flying-depth.zip) | [3.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/temple-flying-normal.zip) |\n| temple | walking | [1.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/temple-walking.zip) | [0.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/temple-walking-depth.zip) | [2.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/temple-walking-normal.zip) |\n| titan | flying | [6.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/titan-flying.zip) | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/titan-flying-depth.zip) | [11.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/titan-flying-normal.zip) |\n| titan | walking | [6.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/titan-walking.zip) | [1.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/titan-walking-depth.zip) | [11.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/titan-walking-normal.zip) |\n| town | flying | [1.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/town-flying.zip) | [0.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/town-flying-depth.zip) | [3.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/town-flying-normal.zip) |\n| town | walking | [1.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/town-walking.zip) | [0.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/town-walking-depth.zip) | [3.0 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/town-walking-normal.zip) |\n| underland | flying | [5.4 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/underland-flying.zip) | [1.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/underland-flying-depth.zip) | [12.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/underland-flying-normal.zip) |\n| underland | walking | [5.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/underland-walking.zip) | [1.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/underland-walking-depth.zip) | [11.4 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/underland-walking-normal.zip) |\n| victorian | flying | [0.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/victorian-flying.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/victorian-flying-depth.zip) | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/victorian-flying-normal.zip) |\n| victorian | walking | [0.4 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/victorian-walking.zip) | [0.1 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/victorian-walking-depth.zip) | [0.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/victorian-walking-normal.zip) |\n| village | flying | [1.6 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/village-flying.zip) | [0.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/village-flying-depth.zip) | [2.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/village-flying-normal.zip) |\n| village | walking | [1.6 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/village-walking.zip) | [0.3 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/village-walking-depth.zip) | [2.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/village-walking-normal.zip) |\n| warehouse | flying | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/warehouse-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/warehouse-flying-depth.zip) | [1.5 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/warehouse-flying-normal.zip) |\n| warehouse | walking | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/warehouse-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/warehouse-walking-depth.zip) | [1.4 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/warehouse-walking-normal.zip) |\n| western | flying | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/western-flying.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/western-flying-depth.zip) | [0.9 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/western-flying-normal.zip) |\n| western | walking | [0.7 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/western-walking.zip) | [0.2 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/western-walking-depth.zip) | [0.8 GB](https://u355171-sub1:m4DDxuwJzm3Fy9vn@u355171-sub1.your-storagebox.de/western-walking-normal.zip) |\n\nPlease note that this is an updated version of the dataset that we have used in our paper. So while it has fewer scenes in total, each sample capture now has a varying focal length which should help with generalizability. Furthermore, some examples are either over- or under-exposed and it would be a good idea to remove these outliers. Please see [#37](https://github.com/sniklaus/3d-ken-burns/issues/37), [#39](https://github.com/sniklaus/3d-ken-burns/issues/39), and [#40](https://github.com/sniklaus/3d-ken-burns/issues/40) for supplementary discussions.\n\n## video\n\u003ca href=\"http://content.sniklaus.com/kenburns/video.mp4\"\u003e\u003cimg src=\"http://content.sniklaus.com/kenburns/video.jpg\" alt=\"Video\" width=\"100%\"\u003e\u003c/a\u003e\n\n## license\nThis is a project by Adobe Research. It is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) and may only be used for non-commercial purposes. Please see the LICENSE file for more information.\n\n## references\n```\n[1]  @article{Niklaus_TOG_2019,\n         author = {Simon Niklaus and Long Mai and Jimei Yang and Feng Liu},\n         title = {3D Ken Burns Effect from a Single Image},\n         journal = {ACM Transactions on Graphics},\n         volume = {38},\n         number = {6},\n         pages = {184:1--184:15},\n         year = {2019}\n     }\n```\n\n## acknowledgment\nThe video above uses materials under a Creative Common license or with the owner's permission, as detailed at the end.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsniklaus%2F3d-ken-burns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsniklaus%2F3d-ken-burns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsniklaus%2F3d-ken-burns/lists"}