chromium/third_party/mediapipe/src/mediapipe/tasks/c/components/containers/matrix.h

/* Copyright 2023 The MediaPipe Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/

#ifndef MEDIAPIPE_TASKS_C_COMPONENTS_CONTAINERS_MATRIX_H_
#define MEDIAPIPE_TASKS_C_COMPONENTS_CONTAINERS_MATRIX_H_

#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif

// Data are stored in column-major order by default.
struct Matrix {
  // The number of rows in the matrix.
  uint32_t rows;

  // The number of columns in the matrix.
  uint32_t cols;

  // The matrix data stored in a column-first layout.
  float* data;
};

#ifdef __cplusplus
}  // extern C
#endif

#endif  // MEDIAPIPE_TASKS_C_COMPONENTS_CONTAINERS_MATRIX_H_