Linear combination of images
imout = imlincomb(k1, im1, k2, im2, ..., kn, imn) imout = imlincomb(k1, im1, k2, im2, ..., kn, imn, K) imout = imlincomb(..., output_class)
Input images with the same size and class.
Double scalars.
Offset, a double scalar.
A string which specifies the output image class. The value of output_class can be 'int8', 'uint8', 'int16', 'uint16', 'int32' or 'constant'.
The linear combination of input images, which has the same size and class with input images or specified by output_class .
imcomplement computes the linear combination of input images.
imout = k1*im1 + k2*im2 + ... + kn*imn [+K]
If imout is an integer matrix, the elements in the output matrix imout that exceed the range of the integer type will be truncated.
Supported classes: INT8, UINT8, INT16, UINT16, INT32, DOUBLE.