ComfyUI Node
cv2.mulTransposed
Raw wrapper of cv2.mulTransposed(src, aTa, scale?, dtype?). Parameters marked '?' are optional; blank means OpenCV default. See the OpenCV documentation for details.
cv2.mulTransposed
- src
- nparray
◄aTafalse►
◄scale1.0000►
◄dtypesame as input►
Categoryimage/CV/low-level/cv2 M
Inputs (4)
| Name | Type | Default | Description |
|---|---|---|---|
| src | NPARRAY | input single-channel matrix. Note that unlike gemm, the function can multiply not only floating-point matrices. A data array (points / matrix), NOT an image - only an NPARRAY link is accepted here. | |
| aTa | BOOLEAN | false | Flag specifying the multiplication ordering. See the description below. |
| scaleopt | FLOAT | 1.0000-1e+38–1e+38 | Optional scale factor for the matrix product. Preset to the OpenCV default (1.0). |
| dtypeopt | COMBO | same as input | Optional type of the output matrix. When it is negative, the output matrix will have the same type as src . Otherwise, it will be type=CV_MAT_DEPTH(dtype) that should be either CV_32F or CV_64F . |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| nparray | NPARRAY | — |