Compare commits
58 Commits
branchflor
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 255cd1a36b | |||
| 868007ad49 | |||
| 4e37ac0a5e | |||
| e1c80bf60c | |||
| 51a71ba61f | |||
| 4cb06d2951 | |||
| 7698e94944 | |||
| 0a909936ed | |||
| d59ffa6888 | |||
| 6a5bc9796b | |||
| ecc46da743 | |||
| c19508d6b2 | |||
| f149efb86a | |||
| 758dc03ab8 | |||
| 93408c1f47 | |||
| ed1191fffd | |||
| 4999631b9e | |||
| 51d02f32c2 | |||
| a23369ea4c | |||
| e2375c4844 | |||
| dd2a621f11 | |||
| 648cbb1777 | |||
| 659121f65d | |||
| ccfceba21c | |||
| e9d3ddb999 | |||
|
|
5776f52662 | ||
| d7fb02e6b4 | |||
|
|
18c917193c | ||
| 14569ad308 | |||
| 8ab69dd403 | |||
| 84139cae5f | |||
| ae541fec66 | |||
| c937323342 | |||
| cddd141ea6 | |||
| 9d913f80f9 | |||
| 6189a5aa1e | |||
|
|
72dab86dd9 | ||
|
|
9d7ec2dc0d | ||
|
|
78579ded18 | ||
|
|
5f52f6eef2 | ||
| 26073f77af | |||
| 24b843fb77 | |||
| 6a2a5f7997 | |||
| 6b039bf852 | |||
| f403d4ffa8 | |||
| a2c2aae0fb | |||
| 07012e5c35 | |||
|
|
6594829227 | ||
| 2057216df8 | |||
|
|
80481f037d | ||
| f152305c4f | |||
| f68e92f429 | |||
| 12359f3ac5 | |||
| 3ca24ebdb7 | |||
| e3d9f2d741 | |||
| d17f495f98 | |||
| 49f7de9dc1 | |||
| 580e8d4296 |
142
imageInput.c
142
imageInput.c
@ -6,17 +6,153 @@
|
|||||||
#define BUFFER_SIZE 100
|
#define BUFFER_SIZE 100
|
||||||
#define FILE_HEADER_STRING "__info2_image_file_format__"
|
#define FILE_HEADER_STRING "__info2_image_file_format__"
|
||||||
|
|
||||||
// TODO Implementieren Sie geeignete Hilfsfunktionen für das Lesen der Bildserie aus einer Datei
|
|
||||||
|
|
||||||
// TODO Vervollständigen Sie die Funktion readImages unter Benutzung Ihrer Hilfsfunktionen
|
// DONE Implementieren Sie geeignete Hilfsfunktionen für das Lesen der Bildserie aus einer Datei
|
||||||
|
unsigned int readStatusInfo (FILE *const source, GrayScaleImageSeries *const series, char *const headerString, int const sizeToRead, int const amountToRead);
|
||||||
|
void readImagedata (FILE *const source, GrayScaleImageSeries *const series, int const amountToRead);
|
||||||
|
unsigned int checkHeaderString (const char *const header);
|
||||||
|
|
||||||
|
|
||||||
|
// DONE Vervollständigen Sie die Funktion readImages unter Benutzung Ihrer Hilfsfunktionen
|
||||||
GrayScaleImageSeries *readImages(const char *path)
|
GrayScaleImageSeries *readImages(const char *path)
|
||||||
{
|
{
|
||||||
GrayScaleImageSeries *series = NULL;
|
GrayScaleImageSeries *series = NULL;
|
||||||
|
FILE *readSource = 0;
|
||||||
|
const unsigned int sizeOfStausInfoElementsInBytes = sizeof(unsigned short);
|
||||||
|
const unsigned int amountOfStatusInfoToRead = 1;
|
||||||
|
unsigned int numberOfBytesToRead = 0;
|
||||||
|
unsigned int expectedHeader = 0;
|
||||||
|
char headerString[sizeof(FILE_HEADER_STRING)] = "";
|
||||||
|
|
||||||
|
|
||||||
|
readSource = fopen(path, "rb");
|
||||||
|
|
||||||
|
if (readSource != NULL)
|
||||||
|
{
|
||||||
|
series = calloc (amountOfStatusInfoToRead, sizeof(GrayScaleImageSeries));
|
||||||
|
series->images = calloc (amountOfStatusInfoToRead, sizeof(GrayScaleImage));
|
||||||
|
|
||||||
|
numberOfBytesToRead = readStatusInfo (readSource, series, headerString, sizeOfStausInfoElementsInBytes, amountOfStatusInfoToRead);
|
||||||
|
expectedHeader = checkHeaderString (headerString);
|
||||||
|
|
||||||
|
series->images = realloc (series->images, series->count * sizeof(GrayScaleImage));
|
||||||
|
series->labels = calloc (series->count, sizeof(&(series->labels)));
|
||||||
|
|
||||||
|
if (expectedHeader)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < series->count; i++)
|
||||||
|
{
|
||||||
|
series->images[i].buffer = calloc(numberOfBytesToRead, sizeof(unsigned char));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < series->count; i++)
|
||||||
|
{
|
||||||
|
series->images[i].width = series->images->width;
|
||||||
|
series->images[i].height = series->images->height;
|
||||||
|
}
|
||||||
|
|
||||||
|
readImagedata(readSource, series, numberOfBytesToRead);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fclose(readSource);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
fclose(readSource);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return series;
|
return series;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO Vervollständigen Sie die Funktion clearSeries, welche eine Bildserie vollständig aus dem Speicher freigibt
|
|
||||||
|
// DONE Vervollständigen Sie die Funktion clearSeries, welche eine Bildserie vollständig aus dem Speicher freigibt
|
||||||
void clearSeries(GrayScaleImageSeries * series)
|
void clearSeries(GrayScaleImageSeries * series)
|
||||||
{
|
{
|
||||||
|
int i = 0;
|
||||||
|
int j = 0;
|
||||||
|
|
||||||
|
|
||||||
|
for (i = 0; i < series->count; i++)
|
||||||
|
{
|
||||||
|
if (i >= 0)
|
||||||
|
{
|
||||||
|
for (j = 0; j < series->images[i].width * series->images[i].height; j++)
|
||||||
|
{
|
||||||
|
series->images[i].buffer[j] = 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
series->labels[i] = 0;
|
||||||
|
series->images[i].width = 0;
|
||||||
|
series->images[i].height = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < series->count; i++)
|
||||||
|
{
|
||||||
|
free(series->images[i].buffer);
|
||||||
|
series->images[i].buffer = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
free(series->labels);
|
||||||
|
series->labels = NULL;
|
||||||
|
free(series->images);
|
||||||
|
series->images = NULL;
|
||||||
|
free(series);
|
||||||
|
series = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// reads headerString, pictureCount, pictureWidth, pictureHight
|
||||||
|
unsigned int readStatusInfo(FILE *const source, GrayScaleImageSeries *const series, char *const headerString, int const sizeToRead, int const amountToRead)
|
||||||
|
{
|
||||||
|
unsigned int bytesToRead = 0;
|
||||||
|
|
||||||
|
|
||||||
|
fread(headerString, sizeof(FILE_HEADER_STRING) - 1, amountToRead, source);
|
||||||
|
fread(&(series->count), sizeToRead, amountToRead, source);
|
||||||
|
fread(&(series->images->width), sizeToRead, amountToRead, source);
|
||||||
|
fread(&(series->images->height), sizeToRead, amountToRead, source);
|
||||||
|
|
||||||
|
bytesToRead = (series->images->width) * (series->images->height);
|
||||||
|
|
||||||
|
|
||||||
|
return bytesToRead;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// reads the imagebytes and the label of all images
|
||||||
|
void readImagedata(FILE *const source, GrayScaleImageSeries *const series, int const amountToRead)
|
||||||
|
{
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
|
||||||
|
for (i = 0; i < series->count ; i++)
|
||||||
|
{
|
||||||
|
fread(&series->images[i].buffer[0], sizeof(*series->images->buffer), amountToRead, source);
|
||||||
|
fread(&series->labels[i], sizeof(*series->images->buffer), sizeof(*series->labels), source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// checks if the read headerString matches the expected headerString
|
||||||
|
unsigned int checkHeaderString(const char *const header)
|
||||||
|
{
|
||||||
|
int i = 0;
|
||||||
|
int notIdenticall = 0;
|
||||||
|
char expectedHeader[sizeof(FILE_HEADER_STRING)] = FILE_HEADER_STRING;
|
||||||
|
|
||||||
|
|
||||||
|
for (i = 0; i < sizeof(FILE_HEADER_STRING); i++)
|
||||||
|
{
|
||||||
|
if (header[i] != expectedHeader[i])
|
||||||
|
{
|
||||||
|
notIdenticall = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return !notIdenticall;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@ -14,7 +14,6 @@ static void prepareImageFile(const char *path, unsigned short int width, unsigne
|
|||||||
{
|
{
|
||||||
const char *fileTag = "__info2_image_file_format__";
|
const char *fileTag = "__info2_image_file_format__";
|
||||||
GrayScalePixelType *zeroBuffer = (GrayScalePixelType *)calloc(numberOfImages * width * height, sizeof(GrayScalePixelType));
|
GrayScalePixelType *zeroBuffer = (GrayScalePixelType *)calloc(numberOfImages * width * height, sizeof(GrayScalePixelType));
|
||||||
|
|
||||||
if(zeroBuffer != NULL)
|
if(zeroBuffer != NULL)
|
||||||
{
|
{
|
||||||
fwrite(fileTag, sizeof(fileTag[0]), strlen(fileTag), file);
|
fwrite(fileTag, sizeof(fileTag[0]), strlen(fileTag), file);
|
||||||
|
|||||||
4
makefile
4
makefile
@ -18,8 +18,8 @@ unityfolder = ./unity
|
|||||||
# --------------------------
|
# --------------------------
|
||||||
# Initiales Programm bauen (zum ausprobieren)
|
# Initiales Programm bauen (zum ausprobieren)
|
||||||
# --------------------------
|
# --------------------------
|
||||||
mnist_initial: $(BINARIES)/libmnist_complete.a
|
#mnist_initial: $(BINARIES)/libmnist_complete.a
|
||||||
$(CC) -o mnist $(BINARIES)/libmnist_complete.a $(BINARIES)/libraylib.a ${LDFLAGS}
|
# $(CC) -o mnist $(BINARIES)/libmnist_complete.a $(BINARIES)/libraylib.a ${LDFLAGS}
|
||||||
|
|
||||||
# --------------------------
|
# --------------------------
|
||||||
# Selbst implementiertes Programm bauen
|
# Selbst implementiertes Programm bauen
|
||||||
|
|||||||
157
matrix.c
157
matrix.c
@ -1,5 +1,6 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include "matrix.h"
|
#include "matrix.h"
|
||||||
|
|
||||||
// TODO Matrix-Funktionen implementieren
|
// TODO Matrix-Funktionen implementieren
|
||||||
@ -7,6 +8,13 @@
|
|||||||
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
||||||
{
|
{
|
||||||
Matrix matrix;
|
Matrix matrix;
|
||||||
|
Matrix empty = {0, 0, NULL};
|
||||||
|
|
||||||
|
if(rows == 0 || cols == 0)
|
||||||
|
{
|
||||||
|
//print("Fehler: Dimensionen muessen >= 1 sein!");
|
||||||
|
return empty;
|
||||||
|
}
|
||||||
|
|
||||||
matrix.rows = rows;
|
matrix.rows = rows;
|
||||||
matrix.cols = cols;
|
matrix.cols = cols;
|
||||||
@ -14,7 +22,7 @@ Matrix createMatrix(unsigned int rows, unsigned int cols)
|
|||||||
|
|
||||||
if(matrix.buffer == NULL)
|
if(matrix.buffer == NULL)
|
||||||
{
|
{
|
||||||
printf("Fehler bei der Speicherreservierung! Keine Matrix erstellt!");
|
//printf("Fehler bei der Speicherreservierung! Keine Matrix erstellt!");
|
||||||
matrix.rows = 0;
|
matrix.rows = 0;
|
||||||
matrix.cols = 0;
|
matrix.cols = 0;
|
||||||
}
|
}
|
||||||
@ -24,41 +32,43 @@ Matrix createMatrix(unsigned int rows, unsigned int cols)
|
|||||||
|
|
||||||
void clearMatrix(Matrix *matrix)
|
void clearMatrix(Matrix *matrix)
|
||||||
{
|
{
|
||||||
free(matrix.buffer);
|
free(matrix->buffer);
|
||||||
|
|
||||||
matrix->buffer = NULL;
|
matrix->buffer = NULL;
|
||||||
matrix->rows = 0;
|
matrix->rows = 0;
|
||||||
matrix->cols = 0;
|
matrix->cols = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setMatrixAt(MatrixType value, Matrix *matrix, unsigned int rowIdx, unsigned int colIdx)
|
void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
|
||||||
{
|
{
|
||||||
if(matrix->buffer == NULL)
|
// printf("hier0\n");
|
||||||
|
if(matrix.buffer == NULL)
|
||||||
{
|
{
|
||||||
printf("Fehler beim Setzen! Matrix nicht initialisiert");
|
// printf("Fehler beim Setzen! Matrix nicht initialisiert");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rowIdx >= matrix->rows || colIdx >= matrix->cols)
|
if(rowIdx >= matrix.rows || colIdx >= matrix.cols)
|
||||||
{
|
{
|
||||||
printf("Ungueltige Indizes beim Setzen!\n");
|
// printf("Ungueltige Indizes beim Setzen!\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// printf("hier1\n");
|
||||||
matrix->buffer[rowIdx * matrix->cols + colIdx] = value;
|
matrix.buffer[rowIdx * matrix.cols + colIdx] = value;
|
||||||
|
// printf("hier2\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
|
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
|
||||||
{
|
{
|
||||||
if(matrix.buffer == NULL)
|
if(matrix.buffer == NULL)
|
||||||
{
|
{
|
||||||
printf("Fehler beim Lesen! Matrix nicht initialisiert");
|
//printf("Fehler beim Lesen! Matrix nicht initialisiert");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rowIdx >= matrix.rows || colIdx >= matrix.cols)
|
if(rowIdx >= matrix.rows || colIdx >= matrix.cols)
|
||||||
{
|
{
|
||||||
printf("Ungueltige Indizes beim Lesen!\n");
|
//printf("Ungueltige Indizes beim Lesen!\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,31 +77,134 @@ MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int co
|
|||||||
|
|
||||||
Matrix add(const Matrix matrix1, const Matrix matrix2)
|
Matrix add(const Matrix matrix1, const Matrix matrix2)
|
||||||
{
|
{
|
||||||
if((matrix1.rows != matrix2.rows) || (matrix1.cols != matrix2.cols))
|
|
||||||
{
|
|
||||||
printf("Fehler bei Addition: Matrix Dimensionen passen nicht ueberein!\n");
|
|
||||||
Matrix empty = {0, 0, NULL};
|
|
||||||
return empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
float matrix1Wert = 0;
|
float matrix1Wert = 0;
|
||||||
float matrix2Wert = 0;
|
float matrix2Wert = 0;
|
||||||
float summe = 0;
|
float summe = 0;
|
||||||
|
int broadcasting = 0;
|
||||||
|
|
||||||
Matrix ergebnisMatrix = createMatrix(matrix1.rows, matrix1.cols);
|
Matrix broadcastedmatrix1 = {0,0,NULL};
|
||||||
|
Matrix broadcastedmatrix2 = {0,0,NULL};
|
||||||
|
|
||||||
|
if((matrix1.rows != matrix2.rows) || (matrix1.cols != matrix2.cols))
|
||||||
|
{
|
||||||
|
if((matrix1.rows != matrix2.rows) && (matrix1.cols == matrix2.cols))
|
||||||
|
{
|
||||||
|
if(matrix1.rows == 1)
|
||||||
|
{
|
||||||
|
broadcastedmatrix1 = createMatrix(matrix2.rows, matrix2.cols);
|
||||||
|
|
||||||
|
for(int row = 0; row<matrix2.rows; row++)
|
||||||
|
{
|
||||||
|
for(int col = 0; col<matrix2.cols; col++)
|
||||||
|
{
|
||||||
|
matrix1Wert = getMatrixAt(matrix1, 0, col);
|
||||||
|
setMatrixAt(matrix1Wert, broadcastedmatrix1, row, col);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
broadcasting = 1;
|
||||||
|
}
|
||||||
|
else if(matrix2.rows == 1)
|
||||||
|
{
|
||||||
|
broadcastedmatrix2 = createMatrix(matrix1.rows, matrix1.cols);
|
||||||
|
|
||||||
|
for(int row = 0; row<matrix1.rows; row++)
|
||||||
|
{
|
||||||
|
for(int col = 0; col<matrix1.cols; col++)
|
||||||
|
{
|
||||||
|
matrix2Wert = getMatrixAt(matrix2, 0, col);
|
||||||
|
setMatrixAt(matrix2Wert, broadcastedmatrix2, row, col);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
broadcasting = 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if((matrix1.rows == matrix2.rows) && (matrix1.cols != matrix2.cols))
|
||||||
|
{
|
||||||
|
if(matrix1.cols == 1)
|
||||||
|
{
|
||||||
|
broadcastedmatrix1 = createMatrix(matrix2.rows, matrix2.cols);
|
||||||
|
|
||||||
|
for(int row = 0; row<matrix2.rows; row++)
|
||||||
|
{
|
||||||
|
for(int col = 0; col<matrix2.cols; col++)
|
||||||
|
{
|
||||||
|
matrix1Wert = getMatrixAt(matrix1, row, 0);
|
||||||
|
setMatrixAt(matrix1Wert, broadcastedmatrix1, row, col);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
broadcasting = 1;
|
||||||
|
}
|
||||||
|
else if(matrix2.cols == 1)
|
||||||
|
{
|
||||||
|
broadcastedmatrix2 = createMatrix(matrix1.rows, matrix1.cols);
|
||||||
|
|
||||||
|
for(int row = 0; row<matrix1.rows; row++)
|
||||||
|
{
|
||||||
|
for(int col = 0; col<matrix1.cols; col++)
|
||||||
|
{
|
||||||
|
matrix2Wert = getMatrixAt(matrix2, row, 0);
|
||||||
|
setMatrixAt(matrix2Wert, broadcastedmatrix2, row, col);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
broadcasting = 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//printf("Fehler bei Addition: Matrix Dimensionen stimmen nicht ueberein!\n");
|
||||||
|
Matrix empty = {0, 0, NULL};
|
||||||
|
return empty;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Matrix ergebnisMatrix;
|
||||||
|
|
||||||
|
switch (broadcasting)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
case 2:
|
||||||
|
ergebnisMatrix = createMatrix(matrix1.rows, matrix1.cols);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 1:
|
||||||
|
ergebnisMatrix = createMatrix(matrix2.rows, matrix2.cols);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
for(int row = 0; row < ergebnisMatrix.rows; row++)
|
for(int row = 0; row < ergebnisMatrix.rows; row++)
|
||||||
{
|
{
|
||||||
for(int col = 0; col < ergebnisMatrix.cols; col++)
|
for(int col = 0; col < ergebnisMatrix.cols; col++)
|
||||||
|
{
|
||||||
|
if(broadcasting == 0)
|
||||||
{
|
{
|
||||||
matrix1Wert = getMatrixAt(matrix1, row, col);
|
matrix1Wert = getMatrixAt(matrix1, row, col);
|
||||||
matrix2Wert = getMatrixAt(matrix2, row, col);
|
matrix2Wert = getMatrixAt(matrix2, row, col);
|
||||||
summe = matrix1Wert + matrix2Wert;
|
summe = matrix1Wert + matrix2Wert;
|
||||||
|
}
|
||||||
|
else if(broadcasting == 1)
|
||||||
|
{
|
||||||
|
matrix1Wert = getMatrixAt(broadcastedmatrix1, row, col);
|
||||||
|
matrix2Wert = getMatrixAt(matrix2, row, col);
|
||||||
|
summe = matrix1Wert + matrix2Wert;
|
||||||
|
}
|
||||||
|
else if(broadcasting == 2)
|
||||||
|
{
|
||||||
|
matrix1Wert = getMatrixAt(matrix1, row, col);
|
||||||
|
matrix2Wert = getMatrixAt(broadcastedmatrix2, row, col);
|
||||||
|
summe = matrix1Wert + matrix2Wert;
|
||||||
|
}
|
||||||
|
|
||||||
setMatrixAt(summe, &ergebnisMatrix, row, col);
|
setMatrixAt(summe, ergebnisMatrix, row, col);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clearMatrix(&broadcastedmatrix1);
|
||||||
|
clearMatrix(&broadcastedmatrix2);
|
||||||
|
|
||||||
return ergebnisMatrix;
|
return ergebnisMatrix;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -99,7 +212,7 @@ Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
|||||||
{
|
{
|
||||||
if(matrix1.cols != matrix2.rows)
|
if(matrix1.cols != matrix2.rows)
|
||||||
{
|
{
|
||||||
printf("Fehler bei Multiplikation: Matrix Dimensionen passen nicht ueberein!\n");
|
//printf("Fehler bei Multiplikation: Matrix Dimensionen passen nicht ueberein!\n");
|
||||||
Matrix empty = {0, 0, NULL};
|
Matrix empty = {0, 0, NULL};
|
||||||
return empty;
|
return empty;
|
||||||
}
|
}
|
||||||
@ -119,7 +232,7 @@ Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
|||||||
erg += getMatrixAt(matrix1, row, k) * getMatrixAt(matrix2, k, col);
|
erg += getMatrixAt(matrix1, row, k) * getMatrixAt(matrix2, k, col);
|
||||||
}
|
}
|
||||||
|
|
||||||
setMatrixAt(erg, &ergebnisMatrix, row, col);
|
setMatrixAt(erg, ergebnisMatrix, row, col);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -170,7 +170,7 @@ NeuralNetwork loadModel(const char *path)
|
|||||||
|
|
||||||
static Matrix imageBatchToMatrixOfImageVectors(const GrayScaleImage images[], unsigned int count)
|
static Matrix imageBatchToMatrixOfImageVectors(const GrayScaleImage images[], unsigned int count)
|
||||||
{
|
{
|
||||||
Matrix matrix = {NULL, 0, 0};
|
Matrix matrix = {/*NULL,*/ 0, 0, NULL};
|
||||||
|
|
||||||
if(count > 0 && images != NULL)
|
if(count > 0 && images != NULL)
|
||||||
{
|
{
|
||||||
@ -182,6 +182,7 @@ static Matrix imageBatchToMatrixOfImageVectors(const GrayScaleImage images[], un
|
|||||||
{
|
{
|
||||||
for(int j = 0; j < images[i].width * images[i].height; j++)
|
for(int j = 0; j < images[i].width * images[i].height; j++)
|
||||||
{
|
{
|
||||||
|
// printf("i %d, j %d \n", i,j);
|
||||||
setMatrixAt((MatrixType)images[i].buffer[j], matrix, j, i);
|
setMatrixAt((MatrixType)images[i].buffer[j], matrix, j, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user