Is there a handy way to provide tile files to itilestitch?
657
1
2
I've just started using
itilestitch [
www.sidefx.com] to stitch tiles from husk. And so far I've been providing the tiles literally one by one, like:
itilestitch ./stitched.exr ./tile00.exr ./tile01.exr ./tile02.exr ./tile03.exr
Is there an expression like ## or %02d or something, to just say:
itilestitch ./stitched.exr ./tile%02d.exr
or a top node?
Or does everyone use scripts to do this?
-
- pixelninja
- Member

- 58 posts
- Joined: March 2017
- Offline
For anyone on Windows here's how I did in a powershell terminal:
itilestitch output.exr @(Get-Item *tile* | Select-Object -ExpandProperty Name)