diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-11-29 20:30:09 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-11-29 20:30:09 +0100 |
| commit | d4d237c183b316b79a747c7e2feb748d0b0372d8 (patch) | |
| tree | 42464454b2aaae753e3c69e8b7de34c6b1a288a3 | |
| parent | 572a1687e3435719c64c9189367d4e24c88bda6e (diff) | |
notes
| -rw-r--r-- | crop-equirectangular.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crop-equirectangular.py b/crop-equirectangular.py index 683cba8..e3d3ec8 100644 --- a/crop-equirectangular.py +++ b/crop-equirectangular.py @@ -4,7 +4,10 @@ import requests import time from PIL import Image -# This script should be run once to generate crops with a specific aspect ratio from a pano. +# This script generates crops with a specific aspect ratio from a 360 video. +# It creates three sequences (identified by "--label") +# The default is a 24 degree overlap (equivalent to 1/6 of the 3:1 output image) +# Setting a higher overlap means you can have taller vertical FOV. parser = argparse.ArgumentParser() parser.add_argument('--folder', default="sequences/venice_360/equi") |
