ComfyUI Node
CV Matrix Multiply
Multiplies two matrices via numpy (left @ right). Typically used to chain homographies: H_cumul = H_previous @ H_pair so that the result maps from the new image frame back to the canvas frame. This is a numpy helper, not a cv2 wrapper.
CV Matrix Multiply
- left
- right
- result
Categoryimage/CV/features
Inputs (2)
| Name | Type | Default | Description |
|---|---|---|---|
| left | NPARRAY | Left matrix (MxK). | |
| right | NPARRAY | Right matrix (KxN). |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| result | NPARRAY | MxN float64 matrix = left @ right. |