5.3.4.74. Function tools_copy_ui8matrix_ui8matrix¶
Defined in File tools.h
5.3.4.74.1. Function Documentation¶
-
void tools_copy_ui8matrix_ui8matrix(const uint8_t **X, const int i0, const int i1, const int j0, const int j1, uint8_t **Y)¶
Copy a 2D array.
- Parameters
X – Input matrix (2D array \([i1 - i0 + 1][j1 - j0 + 1]\)).
i0 – First \(y\) index in the 2D array (included).
i1 – Last \(y\) index in the 2D array (included).
j0 – First \(x\) index in the 2D array (included).
j1 – Last \(x\) index in the 2D array (included).
Y – Output matrix (2D array \([i1 - i0 + 1][j1 - j0 + 1]\)).