From 5e75a169d3fc3d32325ab9514c8312bd92f96420 Mon Sep 17 00:00:00 2001 From: Kinar Date: Thu, 14 Dec 2023 09:02:05 -0800 Subject: [PATCH] Fix rows to columns for the field cols in struct Matrix --- mediapipe/tasks/c/components/containers/matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediapipe/tasks/c/components/containers/matrix.h b/mediapipe/tasks/c/components/containers/matrix.h index 71ec7474c..7d1de67f1 100644 --- a/mediapipe/tasks/c/components/containers/matrix.h +++ b/mediapipe/tasks/c/components/containers/matrix.h @@ -27,7 +27,7 @@ struct Matrix { // The number of rows in the matrix. long rows; - // The number of rows in the matrix. + // The number of columns in the matrix. long cols; // The matrix data.