The LatticeMergeResample option changes the method used to resample the lattices for a Merge module. The OptionValue is either 0 or 1 for Nearest Neighbor or Trilinear.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Merge”)
object.Option(“LatticeMergeResample”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the resampling method for the Merge module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Merge")
CommandApi.Option ("LatticeMergeResample", "1")
Used by: LatticeMerge
See Also