Image Processing Toolbox User's Guide Previous page   Next Page
imlincomb

Compute linear combination of images

Syntax

Description

Z = imlincomb(K1,A1,K2,A2,...,Kn,An) computes

where K1, K2, through Kn are real, double scalars and A1, A2, through An are real, nonsparse, numeric arrays with the same class and size. Z has the same class and size as A1.

Z = imlincomb(K1,A1,K2,A2,...,Kn,An,K) computes

where imlincomb adds K, a real, double scalar, to the sum of the products of K1 through Kn and A1 through An.

Z = imlincomb(...,output_class) lets you specify the class of Z. output_class is a string containing the name of a numeric class.

When performing a series of arithmetic operations on a pair of images, you can achieve more accurate results if you use imlincomb to combine the operations, rather than nesting calls to the individual arithmetic functions, such as imadd. When you nest calls to the arithmetic functions, and the input arrays are of an integer class, each function truncates and rounds the result before passing it to the next function, thus losing accuracy in the final result. imlincomb computes each element of the output Z individually, in double-precision floating point. If Z is an integer array, imlincomb truncates elements of Z that exceed the range of the integer type and rounds off fractional values.

On Intel architecture processors, imlincomb can take advantage of the Intel Performance Primitives Library (IPPL), thus accelerating its execution time. IPPL is activated only in the following cases:

where A1, A2, and Z are of class uint8, int16, or single and are of the same class.

Examples

Example 1

Scale an image by a factor of 2.

Example 2

Form a difference image with the zero value shifted to 128.

Example 3

Add two images with a specified output class.

Example 4

To illustrate how imlincomb performs all the arithmetic operations before truncating the result, compare the results of calculating the average of two arrays, X and Y, using nested arithmetic functions and then using imlincomb.

In the version that uses nested arithmetic functions, imadd adds 255 and 50 and truncates the result to 255 before passing it to imdivide. The average returned in Z(1,1) is 128.

imlincomb performs the addition and division in double precision and only truncates the final result. The average returned in Z2(1,1) is 153.

See Also

imadd, imcomplement, imdivide, immultiply, imsubtract


Previous page  imimposemin immagbox Next page

© 1994-2005 The MathWorks, Inc.