Is there a handy way to provide tile files to itilestitch?

   637   1   2
User Avatar
Member
99 posts
Joined: 8月 2017
オフライン
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?
User Avatar
Member
58 posts
Joined: 3月 2017
オフライン
For anyone on Windows here's how I did in a powershell terminal:
itilestitch output.exr @(Get-Item *tile* | Select-Object -ExpandProperty Name)
  • Quick Links