Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 786aa2e6d8 | |||
| 58df4199b5 | |||
| fb18b75b60 | |||
| 7f3c6d1d3f | |||
| 97df88c0ab | |||
| be07dcffcf | |||
|
|
858673bdca | ||
| 619cd95a5c | |||
|
|
6b9711e47d | ||
| 653312f8a6 | |||
|
|
2b751ef931 | ||
|
|
0081e8f89e | ||
| d8e759b436 | |||
|
|
3c49920613 | ||
| 28944bd871 | |||
| 29b2966c63 | |||
| 41c164d3b2 | |||
| b4bc2fae8a |
8
.gitignore
vendored
8
.gitignore
vendored
@ -1,4 +1,10 @@
|
|||||||
mnist
|
mnist
|
||||||
runTests
|
runTests
|
||||||
*.o
|
*.o
|
||||||
*.exe
|
*.exe
|
||||||
|
.vscode/settings.json
|
||||||
|
.vscode/launch.json
|
||||||
|
.vscode/settings.json
|
||||||
|
.vscode/settings.json
|
||||||
|
runImageInputTests
|
||||||
|
testFile.info2
|
||||||
|
|||||||
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"makefile.configureOnOpen": false
|
||||||
|
}
|
||||||
33
imageInput.c
33
imageInput.c
@ -7,16 +7,49 @@
|
|||||||
#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 Implementieren Sie geeignete Hilfsfunktionen für das Lesen der Bildserie aus einer Datei
|
||||||
|
GrayScaleImage readImage()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// TODO Vervollständigen Sie die Funktion readImages unter Benutzung Ihrer Hilfsfunktionen
|
// TODO Vervollständigen Sie die Funktion readImages unter Benutzung Ihrer Hilfsfunktionen
|
||||||
GrayScaleImageSeries *readImages(const char *path)
|
GrayScaleImageSeries *readImages(const char *path)
|
||||||
{
|
{
|
||||||
|
unsigned short * numImages;
|
||||||
|
unsigned short * breiteBilder;
|
||||||
|
unsigned short * laengeBilder;
|
||||||
|
|
||||||
GrayScaleImageSeries *series = NULL;
|
GrayScaleImageSeries *series = NULL;
|
||||||
|
FILE *file = fopen(*path,"rb");
|
||||||
|
char * headOfFile;
|
||||||
|
|
||||||
|
fread(headOfFile, sizeof(FILE_HEADER_STRING),1, file); //liest den header ein und überprüft ob korrekte datei
|
||||||
|
|
||||||
|
if(strcmp(headOfFile, FILE_HEADER_STRING) != 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
// liest numIMages, breite und länge der Bilder ein
|
||||||
|
fseek(file, sizeof(FILE_HEADER_STRING), SEEK_SET);
|
||||||
|
fread(numImages, sizeof(short), 1, file);
|
||||||
|
|
||||||
|
fseek(file, sizeof(short), SEEK_CUR);
|
||||||
|
fread(breiteBilder, sizeof(short), 1, file);
|
||||||
|
|
||||||
|
fseek(file, sizeof(short), SEEK_CUR);
|
||||||
|
fread(laengeBilder, sizeof(short), 1, file);
|
||||||
|
|
||||||
|
series = malloc(*numImages * *breiteBilder * *laengeBilder * sizeof(short));
|
||||||
|
|
||||||
|
for(int i = 0; i < numImages; i++)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
return series;
|
return series;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO Vervollständigen Sie die Funktion clearSeries, welche eine Bildserie vollständig aus dem Speicher freigibt
|
// TODO Vervollständigen Sie die Funktion clearSeries, welche eine Bildserie vollständig aus dem Speicher freigibt
|
||||||
void clearSeries(GrayScaleImageSeries *series)
|
void clearSeries(GrayScaleImageSeries *series)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
4
makefile
4
makefile
@ -63,4 +63,6 @@ ifeq ($(OS),Windows_NT)
|
|||||||
else
|
else
|
||||||
rm -f *.o mnist runMatrixTests runNeuralNetworkTests runImageInputTests
|
rm -f *.o mnist runMatrixTests runNeuralNetworkTests runImageInputTests
|
||||||
endif
|
endif
|
||||||
|
clean für windows
|
||||||
|
clean:
|
||||||
|
rm -f *.o *.exe
|
||||||
81
matrix.c
81
matrix.c
@ -1,35 +1,68 @@
|
|||||||
|
#include "matrix.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "matrix.h"
|
|
||||||
|
|
||||||
// TODO Matrix-Funktionen implementieren
|
// TODO Matrix-Funktionen implementieren
|
||||||
|
/*typedef struct {
|
||||||
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
unsigned int rows; //Zeilen
|
||||||
{
|
unsigned int cols; //Spalten
|
||||||
|
MatrixType *buffer; //Zeiger auf Speicherbereich Reihen*Spalten
|
||||||
|
} Matrix;*/
|
||||||
|
Matrix createMatrix(unsigned int rows, unsigned int cols) {
|
||||||
|
MatrixType *buffer =
|
||||||
|
malloc(rows * cols * sizeof(MatrixType)); // Speicher reservieren, malloc
|
||||||
|
// liefert Zeiger auf Speicher
|
||||||
|
Matrix newMatrix = {rows, cols, buffer}; // neue Matrix nach struct
|
||||||
|
return newMatrix;
|
||||||
}
|
}
|
||||||
|
void clearMatrix(Matrix *matrix) {
|
||||||
void clearMatrix(Matrix *matrix)
|
matrix->buffer = UNDEFINED_MATRIX_VALUE;
|
||||||
{
|
matrix->rows = UNDEFINED_MATRIX_VALUE;
|
||||||
|
matrix->cols = UNDEFINED_MATRIX_VALUE;
|
||||||
|
free((*matrix).buffer); // Speicher freigeben
|
||||||
}
|
}
|
||||||
|
void setMatrixAt(const MatrixType value, Matrix matrix,
|
||||||
|
const unsigned int rowIdx, // Kopie der Matrix wird übergeben
|
||||||
|
const unsigned int colIdx) {
|
||||||
|
|
||||||
void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
|
matrix.buffer[rowIdx * matrix.cols + colIdx] =
|
||||||
{
|
value; // rowIdx * matrix.cols -> Beginn der Zeile colIdx ->Spalte
|
||||||
|
// innerhalb der Zeile
|
||||||
}
|
}
|
||||||
|
MatrixType getMatrixAt(const Matrix matrix,
|
||||||
|
unsigned int rowIdx, // Kopie der Matrix wird übergeben
|
||||||
|
unsigned int colIdx) {
|
||||||
|
if (rowIdx >= matrix.rows ||
|
||||||
|
colIdx >= matrix.cols) { // Speichergröße nicht überschreiten
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
|
MatrixType value = matrix.buffer[rowIdx * matrix.cols + colIdx];
|
||||||
{
|
|
||||||
|
return value;
|
||||||
}
|
}
|
||||||
|
Matrix add(const Matrix matrix1, const Matrix matrix2) {
|
||||||
|
Matrix result;
|
||||||
|
const int cols1 = matrix1.cols;
|
||||||
|
const int rows1 = matrix1.rows;
|
||||||
|
const int cols2 = matrix2.cols;
|
||||||
|
const int rows2 = matrix2.rows;
|
||||||
|
const int colsEqu = (matrix1.cols == matrix2.cols) ? 1 : 0;
|
||||||
|
const int rowsEqu = (matrix1.rows == matrix2.rows) ? 1 : 0;
|
||||||
|
if(colsEqu && rowsEqu)
|
||||||
|
{
|
||||||
|
Matrix result = createMatrix(matrix1.rows, matrix1.cols);
|
||||||
|
for(int i = 0; i < rows1; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < cols1; j++)
|
||||||
|
{
|
||||||
|
int valueM1 = getMatrixAt(matrix1, i, j);
|
||||||
|
int valueM2 =getMatrixAt(matrix2, i, j);
|
||||||
|
int sum = valueM1 + valueM2;
|
||||||
|
setMatrixAt(sum, result,i,j);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Matrix add(const Matrix matrix1, const Matrix matrix2)
|
return result;
|
||||||
{
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Matrix multiply(const Matrix matrix1, const Matrix matrix2) { return matrix1; }
|
||||||
Matrix multiply(const Matrix matrix1, const Matrix matrix2)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
12
matrix.h
12
matrix.h
@ -6,14 +6,20 @@
|
|||||||
typedef float MatrixType;
|
typedef float MatrixType;
|
||||||
|
|
||||||
// TODO Matrixtyp definieren
|
// TODO Matrixtyp definieren
|
||||||
|
typedef struct {
|
||||||
|
unsigned int rows;
|
||||||
|
unsigned int cols;
|
||||||
|
MatrixType *buffer;
|
||||||
|
|
||||||
|
} Matrix;
|
||||||
|
|
||||||
Matrix createMatrix(unsigned int rows, unsigned int cols);
|
Matrix createMatrix(unsigned int rows, unsigned int cols);
|
||||||
void clearMatrix(Matrix *matrix);
|
void clearMatrix(Matrix *matrix);
|
||||||
void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx);
|
void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx,
|
||||||
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx);
|
unsigned int colIdx);
|
||||||
|
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx,
|
||||||
|
unsigned int colIdx);
|
||||||
Matrix add(const Matrix matrix1, const Matrix matrix2);
|
Matrix add(const Matrix matrix1, const Matrix matrix2);
|
||||||
Matrix multiply(const Matrix matrix1, const Matrix matrix2);
|
Matrix multiply(const Matrix matrix1, const Matrix matrix2);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
29
neuralN_readFiles
Normal file
29
neuralN_readFiles
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
Inhalte: Dynamische Speicherverwaltung, Strukturen, Dateien lesen.
|
||||||
|
|
||||||
|
Ziel: Die Bilder aus mnist_test.info 2 auslesen
|
||||||
|
|
||||||
|
Struktur für einlesen des Strings am Anfang der Datei:
|
||||||
|
int AnzahlBilder
|
||||||
|
int breiteBilder
|
||||||
|
int LaengeBilder
|
||||||
|
|
||||||
|
Struktur für Bilder:
|
||||||
|
unsinged int array Breite * Höhe
|
||||||
|
unsigned int Klasse (Label 0 - 9)
|
||||||
|
|
||||||
|
|
||||||
|
Speicher für Bilder dynamisch allokieren
|
||||||
|
|
||||||
|
GrayScaleImageSeries:
|
||||||
|
datei einlesen
|
||||||
|
header String aus der Datei lesen
|
||||||
|
mit header String den benötigten Speicher freigeben
|
||||||
|
in den Speicher die Datei einschreiben (mit Hilfsfunktion)
|
||||||
|
|
||||||
|
Hilfsfunktion (saveFile)
|
||||||
|
gehe zum Anfang des Strings
|
||||||
|
speicher alles der Reihe nach ein
|
||||||
|
|
||||||
|
clearSeries:
|
||||||
|
pointer der be malloc kommt nehemen
|
||||||
|
free()
|
||||||
Loading…
x
Reference in New Issue
Block a user