Revision ae7a5bdcf354cfa9a23b7a185252807370a5e1bf authored by Nathaniel Brough on 13 May 2023, 00:16:01 UTC, committed by Nathaniel Brough on 13 May 2023, 00:18:43 UTC
1 parent a31bbe3
Raw File
viz.sh
#!/bin/bash
export HL_TRACE_FILE=/dev/stdout
export HL_NUM_THREADS=4
rm -f $1/local_laplacian.mp4
set -euo pipefail
make $1/process_viz && \
./$1/process_viz ../images/rgb_small.png 4 1 1 0 ./$1/out_small.png | \
../../bin/HalideTraceViz \
--size 1920 1080 --timestep 3000 | \
${HL_AVCONV} -f rawvideo -pix_fmt bgr32 -s 1920x1080 -i /dev/stdin -c:v h264 ./$1/local_laplacian.mp4
#mplayer -demuxer rawvideo -rawvideo w=1920:h=1080:format=rgba:fps=30 -idle -fixed-vo -
back to top