User guide
37
Option Usage
--tile-render Used to render one tile of an image divided horizontally and vertically
into tiles. For instance, using
--tile-render=1,1,3,3 splits the image into 9 smaller images (or tiles) in
a 3x3 square and then renders the middle tile as the index for tile
renders starts at the bottom left corner with 0,0. In the case of 3x3
tiles, the indicies are:
0,2 1,2 2,2
0,1 1,1 2,1
0,0 1,0 2,0
The results are saved in the same location as specified by the
RenderOutputDefine node but with a tile suffix. For instance: tile_1_
1.beauty.001.exr
Syntax:
--tile-render=<left_tile_index>, <bottom_tile_index>, <total_tiles_
width>, <total_tiles_height>
Example:
./katana --batch --katana-file=/tmp/test.katana --t=1
--render-node=beauty --tile-render=0,0,2,2
./katana --batch --katana-file=/tmp/test.katana --t=1
--render-node=beauty --tile-render=0,1,2,2
./katana --batch --katana-file=/tmp/test.katana --t=1
--render-node=beauty --tile-render=1,0,2,2
./katana --batch --katana-file=/tmp/test.katana --t=1
--render-node=beauty --tile-render=1,1,2,2
6 KATANA LAUNCH MODES |