Skip to content
Snippets Groups Projects
Select Git revision
  • d07b6650c36dbea19a15a9e1aab1bff3f5b6004f
  • develop default protected
  • feature/webrtc
  • feature/mesh-based-reprojection
  • feature/linux-fixes
  • feature/dual-layer-reprojection
  • feature/frame-invalidation
  • feature/plot-script
  • bug/jittering
  • feature/indirect-sky
  • feature/depth-peeling-reprojection protected
  • master
12 results

Features.md

Blame
  • eisgenerator_plot 308 B
    #!/bin/sh
    
    if ! command -v eisgenerator_export &> /dev/null
    then
    	echo "eisgenerator_export is required in \$PATH"
    	exit
    elif ! command -v gnuplot &> /dev/null
    then
    	echo "gnuplot is required in \$PATH"
    	exit
    fi
    
    eisgenerator_export -q $@ | gnuplot -p -e "set datafile separator ','; plot '-' using 2:3 w l"