Nodes/comfyui_cv/CV Matrix Multiply
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.

By bmad4ever·Created 3 months ago·Updated 2 days ago· 0
CV Matrix Multiply
  • left
  • right
  • result
Categoryimage/CV/features

Inputs (2)

NameTypeDefaultDescription
leftNPARRAYLeft matrix (MxK).
rightNPARRAYRight matrix (KxN).

Outputs (1)

NameTypeDescription
resultNPARRAYMxN float64 matrix = left @ right.