Skip to content

Instantly share code, notes, and snippets.

@PeterJCLaw
Created February 24, 2023 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PeterJCLaw/69b81b16efb0f5d6a7d2b79a9a7972e6 to your computer and use it in GitHub Desktop.
Save PeterJCLaw/69b81b16efb0f5d6a7d2b79a9a7972e6 to your computer and use it in GitHub Desktop.
Generate white-balanced & cropped final images from SR2023 Virtual Competition recordings
#!/bin/sh
set -euo pipefail
# Requirements:
# - ImageMagick and FFMPEG (cli tools on PATH)
# - The script from http://www.fmwconcepts.com/imagemagick/whitebalance/index.php, +x and on PATH
#
# Usage:
# - cd into the directory containing the recordings
# - run this script
# We only have 20 matches
for matchno in $(seq 0 19)
do
# Extract the last frame from the video
ffmpeg -sseof -3 -i match-${matchno}.mp4 -update 1 -q:v 1 -y last-${matchno}.raw.jpg
# Balance the image using a pixel known to be in the background
whitebalance 1,1 last-${matchno}.raw.jpg last-${matchno}.balanced.jpg
# Crop to the arena; size and offset manually determined by experimentation
convert last-${matchno}.balanced.jpg -crop 1152x882+380+95 last-${matchno}.cropped.jpg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment