TIEVisionMath.genericMultiply
Declaration
procedure genericMultiply(src1: TIEVisionImage; src2: TIEVisionImage; alpha: double; src3: TIEVisionImage; beta: double; dest: TIEVisionImage; flags: TIEVisionGEMMFlags = ievGEMM_NONE); safecall;
Description
Perform a generalized matrix multiplication.
| Parameter | Description |
| src1 | First multiplied input matrix that should have 32 bit floating point (1 channel), 64 bit floating point (1 channel) , 32 bit floating point (2 channels), or 64 bit floating point (2 channels) type |
| src2 | Second multiplied input matrix of the same type as src1 |
| alpha | Weight of the matrix product |
| src3 | Third optional delta matrix added to the matrix product. It should have the same type as src1 and src2 |
| beta | Weight of src3 |
| dest | Destination matrix. It has the proper size and the same type as input matrices |
| flags | Operation flag |