ultramango / gear360pano

Simple script to create equirectangular panorama by stitching images from Samsung Gear 360
MIT License
225 stars 55 forks source link

Ignore images that have already been processed #25

Closed neuhaus closed 7 years ago

neuhaus commented 7 years ago

Feature request:

Please add an option to skip over existing stitched pictures.

ftoledo commented 7 years ago

how to use this script? i never get a stiched image

mkdir out for A in ls 360*.JPG ; do gear360pano.cmd $A out/$A; done

ultramango commented 7 years ago

There's an updated doc, do this:

gear360pano.cmd 360*.JPG

Your files will be in html/data, you can set the output directory using o parameter, ex. -o out.

BTW: it's enough to do:

for A in 360*.JPG; do echo "hello"; done

ls is redundant (actually it creates an extra process).

ultramango commented 7 years ago

Processed files are skipped if they exist in target directory.