TIEVisionImage.mulTransposed
Declaration
procedure mulTransposed(dest: TIEVisionImage; order: bool32; delta: TIEVisionImage; scale: double = 1.0); overload; safecall;
procedure mulTransposed(dest: TIEVisionImage; order: bool32; scale: double = 1.0); overload; safecall;
Description
Calculate the product of an image (matrix) and its transposition.
Parameter | Description |
dest | Container for the resulting image |
order | If true performs: st = scale(src - delta)T (src - delta), otherwise performs: dst = scale(src - delta)(src - delta)T |
delta | Optional delta matrix subtracted from src before the multiplication |
scale | Optional scale factor for the matrix product |