Min

Function
Compares two images and takes the pixel with the lower value. Like Max, this is a good tool for merging alpha masks.

Parameters
Type
Defaults
Function
clipMode
int
1
Toggles between foreground (0) and background resolution (1)
percent
float
100
A gain on the second image.


Synopsis

image Min( 
  image Foreground, 
  image Background, 
  int clipMode, 
  float percent 
);


Script

image = Min( 
  Foreground, 
  Background, 
  clipMode, 
  percent
);


Command Line

shake -min image clipMode percent

See Also
Max