neuralNetwork.c eingefuegt

This commit is contained in:
silvana884 2025-11-26 10:33:18 +01:00
parent cd5e29d44d
commit 3d352d7c06

View File

@ -170,7 +170,7 @@ NeuralNetwork loadModel(const char *path)
static Matrix imageBatchToMatrixOfImageVectors(const GrayScaleImage images[], unsigned int count)
{
Matrix matrix = {NULL, 0, 0};
Matrix matrix = {0,0, NULL};
if(count > 0 && images != NULL)
{