Closed csparker247 closed 1 year ago
This adds the layer generation functionality of vc_layers into vc_render. Simply set the rendering method to 4 on the command line:
vc_layers
vc_render
4
# saves to ./20231122120123_#.tif vc_render -v Foo.volpkg -s 20231122120123 --method 4 # saves to layers/20231122120123_#.tif vc_render -v Foo.volpkg -s 20231122120123 --method 4 -o layers/ # saves to layers/#.tif vc_render -v Foo.volpkg -s 20231122120123 --method 4 -o layers/{}.tif
vc_layers_from_ppm
--compression
WriteImageSequence
padding
WriteImageOptions
partition
This adds the layer generation functionality of
vc_layers
intovc_render
. Simply set the rendering method to4
on the command line:Other changes
vc_layers
since it's no longer needed.vc_layers_from_ppm
will automatically create the output directory if it doesn't exist, but the parent must exist.vc_render
to support auto-named image sequences. Also adds--compression
flag.WriteImageSequence
. Also addspadding
toWriteImageOptions
for controlling sequence padding.partition
function for splitting a string on a separator, similar to the Python function of the same name.