Skip to content

trek-view/fusion2sphere

Repository files navigation

fusion2sphere

Takes two raw GoPro Fusion frames (for front and back camera) and converts them to a single equirectangular projection.

READ BEFORE YOU BEGIN

Installation

The fusion2sphere command line utility should build out of the box on Linux using the simple Makefile provided. The only external dependency is the standard jpeg library (libjpeg), the lib and include directories need to be on the gcc build path. The same applies to MacOS except Xcode and command line tools need to be installed.

$ git clone https://github.com/trek-view/fusion2sphere
$ make -f Makefile
$ @SYSTEM_PATH/fusion2sphere

Where @SYSTEM_PATH is full route to repo and fusion2sphere command, e.g.

/Users/dgreenwood/Documents/repos/trek-view/fusion2sphere/fusion2sphere

Note for Mac M1 Chip users

I ran into a few issues with my new Mac with an M1 chop that required a slightly different Makefile (because homebrew directory issues finding installed files, specifically fatal error: 'jpeglib.h' file not found).

$ git clone https://github.com/trek-view/fusion2sphere
$ cd fusion2sphere
$ make -f Makefile-MacM1
$ @SYSTEM_PATH/fusion2sphere

Usage

Preparation

This script is designed to be used with frames.

If using video mode (not photos) you will first need to convert both .mp4 videos to frames and then pass the two corresponding frames to the script.

You can use ffmpeg to split your mp4 videos into frames (below at a rate of 1 FPS).

$ ffmpeg -i FRVIDEO1.mp4 -r 1 -q:v 1 FR/img%d.jpg 
$ ffmpeg -i BKVIDEO2.mp4 -r 1 -q:v 1 BK/img%d.jpg 

Lighting issues

This script does not normalise for different lighting levels (apeture settings) on each lens.

You can see an example of the light/dark effect this leads to in our examples.

Therefore, you might want to proprocess frames to normalise lighting levels between front/back images.

Script

$ fusion2sphere [options] FRONT BACK PARAM.txt

Variables:

  • FRONT: path to single front image / path to directory of front images
  • BACK: path to single back image / path to directory of back images
  • PARAM.txt correct parameter text file for image size (mode used on Fusion)
    • 18mp = parameter-examples/photo-mode.txt
    • 5.2k = parameter-examples/video-5_2k-mode.txt
    • 3k = parameter-examples/video-3k-mode.txt

Options:

  • -w n: sets the output image size, default: 4096
  • -a n: sets antialiasing level, default: 2
  • -b n: longitude width for blending, default: no blending
  • -q n: blend power, default: linear
  • -e n: optimise over n random steps
  • -p n n n: range search aperture, center and rotations, default: 10 20 5
  • -f flag needs two images one from front and second from back.
  • -o flag outputs the final image.
  • -d: debug mode
  • -r: create remap filters for ffmpeg (see this post for more on how these are used)

Examples (MacOS)

Use a GoPro Fusion 18mp photo(s)

Single image

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -b 5 -w 5760 -f testframes/18mp/single/FR/GF075169.JPG testframes/18mp/single/BK/GB075169.JPG -o testframes/18mp/single/STITCHED/G075169.jpg parameter-examples/photo-mode.txt

Generate .pgm files for ffmpeg

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -r -b 5 -w 5760 -f testframes/18mp/single/FR/GF075169.JPG testframes/18mp/single/BK/GB075169.JPG -o testframes/18mp/single/STITCHED/G075169.jpg parameter-examples/photo-mode.txt

Directory of images

Note: directories image names will be sorted in ascending order for pairing. (g) is the start number of image and (h) is the end number of image

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -b 5 -w 5760 -g 075169 -h 075171 -x testframes/18mp/directory/FR/GF%06d.jpg testframes/18mp/directory/BK/GB%06d.jpg -o testframes/18mp/directory/STITCHED/G%06d parameter-examples/photo-mode.txt
Use a GoPro Fusion 5.2k video frame(s)

Single image

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -b 5 -w 5228 -f testframes/5_2k/single/FR/GPFR7152_img1.jpg testframes/5_2k/single/BK/GPBK7152_img1.jpg -o testframes/5_2k/single/STITCHED/GP7152.jpg parameter-examples/video-5_2k-mode.txt

Generate .pgm files for ffmpeg

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -r -b 5 -w 5228 -f testframes/5_2k/single/FR/GPFR7152_img1.jpg testframes/5_2k/single/BK/GPBK7152_img1.jpg -o testframes/5_2k/single/STITCHED/GP7152.jpg parameter-examples/video-5_2k-mode.txt

Directory of images

Note: directories image names will be sorted in ascending order for pairing.(g) is the start number of image and (h) is the end number of image

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -b 5 -w 5228 -g 1 -h 5 -x testframes/5_2k/directory/FR/GPFR7152_img%01d.jpg testframes/5_2k/directory/BK/GPBK7152_img%01d.jpg -o testframes/5_2k/directory/STITCHED/GP7152_img%01d.jpg parameter-examples/video-5_2k-mode.txt
Use a GoPro Fusion 3k video frame(s)

Single image

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -b 5 -w 3072 -f testframes/3k/single/FR/GPFR0003_img1.jpg testframes/3k/single/BK/GPBK0003_img1.jpg -o testframes/3k/single/STITCHED/GP0003.jpg parameter-examples/video-3k-mode.txt

Generate .pgm files for ffmpeg

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -r -b 5 -w 3072 -f testframes/3k/single/FR/GPFR0003_img1.jpg testframes/3k/single/BK/GPBK0003_img1.jpg -o testframes/3k/single/STITCHED/GP0003.jpg parameter-examples/video-3k-mode.txt

Directory of images

Note: directories image names will be sorted in ascending order for pairing.(g) is the start number of image and (h) is the end number of image

$ /Users/dgreenwood/fusion2sphere/fusion2sphere -b 5 -w 3072 -g 1 -h 5 -x testframes/3k/directory/FR/GPFR0003_img%01d.jpg testframes/3k/directory/BK/GPBK0003_img%01d.jpg -o testframes/3k/directory/STITCHED/GPFR0003_img%01d.jpg parameter-examples/video-3k-mode.txt

License

Apache 2.0.

About

Takes 2 raw fisheye GoPro Fusion frames and converts them to a more widely recognised equirectangular projection.

Topics

Resources

License

Stars

Watchers

Forks