Compare commits

...

26 Commits

Author SHA1 Message Date
0a8349d722 Finished testing, no more Failures in imageInputTests 2025-11-24 18:26:34 +01:00
3df6e152d7 Started testing in seperate branch 2025-11-24 17:45:56 +01:00
f52de5e656 Got a compiled Version that runs all the Test. Still 4 Test Failures present 2025-11-24 15:16:30 +01:00
65da22f564 Started working on ImageInput, didnt finish and doesnt compile yet 2025-11-24 14:32:40 +01:00
2ee6db1268 Commit before Merge to main 2025-11-24 11:01:20 +01:00
ec8c735eb2 Adding Breakpoints to set parameters 2025-11-24 10:59:53 +01:00
f6a813a635 commit in order to appease git 2025-11-24 10:09:13 +01:00
82d72c5e90 fixed a minor issue with readImages() 2025-11-24 10:07:34 +01:00
0a549b7e0d matrix.c fully functional, matrixTests returning no errors 2025-11-23 22:30:13 +01:00
c99db0f96c Started fixing matrixMultiply 2025-11-23 22:23:45 +01:00
6524bf95e4 Fixed Broadcastinng Issue in Add Function in matrix.c 2025-11-22 16:06:10 +01:00
c13c8bd6f6 Completed imageinput.c to the point that it does compile but doen't manage every test 2025-11-21 15:52:10 +01:00
7168681f1d Preparation for the next workphase 2025-11-20 17:13:47 +01:00
04493332f7 First error fixing in createMatrix() 2025-11-20 16:44:35 +01:00
94a69b0068 Finally terminated additional typedef 2025-11-20 16:36:18 +01:00
ed304e3e60 Added file opening sequence 2025-11-20 16:33:57 +01:00
8676389e62 still fixed changes related to matrix 2025-11-20 16:29:55 +01:00
963eb3b3a4 fixed matrix errors 2025-11-20 16:28:10 +01:00
9bd9cd7985 Started merging the subfunctions in readImages(), next step: adding correct file 2025-11-20 16:26:02 +01:00
3adc90e98c Merge branch 'initializeForInput' 2025-11-20 16:07:27 +01:00
ef7062e1fd Made commit ready for merging 2025-11-20 16:03:16 +01:00
db14708439 Fixed compilation Issues in ClearSeries 2025-11-20 16:02:17 +01:00
e4b0aea848 Added last functions for inputInitialization 2025-11-20 15:52:56 +01:00
926c5c583d Merge branch 'CheckString' 2025-11-20 15:51:32 +01:00
1dd5d458e6 fixed some Error Messegas from matrixTests 2025-11-20 09:08:37 +01:00
fb8672e5a1 Finished StringCheck Method but did not test yet 2025-11-17 11:40:47 +01:00
4 changed files with 185 additions and 64 deletions

View File

@ -6,48 +6,127 @@
#define BUFFER_SIZE 100
#define FILE_HEADER_STRING "__info2_image_file_format__"
// TODO Implementieren Sie geeignete Hilfsfunktionen für das Lesen der Bildserie aus einer Datei
void setParameters(const char buffer[], unsigned int* imageCount, int* width, int* height);
void allocateMemory(GrayScaleImageSeries *s, const int imageCount, const int width, const int height);
// TODO Vervollständigen Sie die Funktion readImages unter Benutzung Ihrer Hilfsfunktionen
int checkString (FILE *file){ //Checks if String at the start of File equals expected Format (0 for wrong 1 for right)
if (file == NULL){ //returns 0 for empty file
return 0;
}
char expectedString[] = FILE_HEADER_STRING;
char actualString[BUFFER_SIZE];
rewind(file);
size_t bytesRead = fread(actualString, 1,27 , file); //Stores Bytes of start of File to actualString
if (bytesRead != 27){
return 0;
} //Returns 0 if File is to short
actualString[27] = '\0';
if (strcmp(actualString, expectedString) != 0){
return 0;
}
else{
return 1;
}
}
static void setParameters(FILE* file, unsigned int* imageCount, unsigned int* width, unsigned int* height);
static int allocateMemory(GrayScaleImageSeries *series, const int imageCount, const int width, const int height);
GrayScaleImageSeries *readImages(const char *path)
{
GrayScaleImageSeries *series = NULL;
FILE* file = fopen(path, "rb");
if(!(checkString(file))){
fclose(file);
return NULL;
}
// hier Niko Stuff
// create char array buffer with bytes containing initialization information
// TODO some kind of logic to get correct address in binary file
char initBuffer[3];
/*
int readBytes = fread(initBuffer, 1, 3, //file);
*/
unsigned int* imageCount = &(series->count); // sets a pointer for int variable count in struct
setParameters(initBuffer, imageCount, series->images->width, series->images->height);
allocateMemory(*imageCount, series->images->width, series->images->height);
unsigned int width, height; //uninitialised Variables, will be set by setparamters
GrayScaleImageSeries *series = malloc(sizeof(GrayScaleImageSeries)); //Reserving memory for series
setParameters(file, &(series->count), &width, &height); //setting parameters taken from image file
if(!allocateMemory(series, series->count, width, height)){
clearSeries(series); //If Memory couldnt be correctly allocated a clearing is necessary
fclose(file);
return NULL;
}
//Getting image data
for(unsigned int i = 0; i < series->count ; i++){ //Iterating for every image
for(unsigned int j = 0; j < width * height; j++){ //Iterating for every pixel
fread(&(series->images[i].buffer[j]), sizeof(GrayScalePixelType), 1, file);
}
fread(&(series->labels[i]), sizeof(unsigned char), 1, file); // TODO Added writing in labels array
}
fclose(file);
return series;
}
void setParameters(const char buffer[], unsigned int* imageCount, int* width, int* height) { // sets the parameters
*imageCount = (int) buffer[0];
*width = (int) buffer[1];
*height = (int) buffer[2];
}
void allocateMemory(GrayScaleImageSeries s, const int imageCount, const int width, const int height) {
for (int i = 0; i < imageCount; i++) {
s->images[i].buffer = (unsigned char *) malloc(width * height * sizeof(unsigned char)); // allocates memory for every image in the series
}
}
// TODO Vervollständigen Sie die Funktion clearSeries, welche eine Bildserie vollständig aus dem Speicher freigibt
void clearSeries(GrayScaleImageSeries *series)
{
for(size_t i = GrayScaleImageSeries.count - 1; i >= 0; i--)
if (!series)
return;
//Freeing Pixelbuffer for every image
for(unsigned int i = 0; i < series->count; i++)
{
free(GrayScaleImageSeries.images+GrayScaleImageSeries.count*sizeof(GrayScaleImage)*i);
free(GrayScaleImageSeries.labels+GrayScaleImageSeries.count*sizeof(unsigned char)*i);
free(series->images[i].buffer);
}
GrayScaleImageSeries.images = NULL;
GrayScaleImageSeries.labels = NULL;
free(series->images); //Freeing Images array
free(series->labels); //Freeing Labels
free(series); //Freeing Main Structure
}
static void setParameters(FILE* file, unsigned int* imageCount, unsigned int* width, unsigned int* height) { // sets the parameters
unsigned short buffer[3];
fseek(file, 27, SEEK_SET);
if(fread(buffer, sizeof(unsigned short), 3, file) != 3){ // TODO changed some stuff here, used UNSIGNED SHORT instead of UNSIGNED CHAR!!
*imageCount = 0;
*width = 0;
*height = 0;
return;
} //Stops if file is too short and clean up
*imageCount = (unsigned int) buffer[0];
*width = (unsigned int) buffer[1];
*height = (unsigned int) buffer[2];
}
static int allocateMemory(GrayScaleImageSeries *series, const int imageCount, const int width, const int height) {
series->count = imageCount; //counts number of images in series
series->images = malloc (sizeof(GrayScaleImage) * imageCount); //Reserving Memory for Images Array
if (series->images == NULL)
return 0;
series->labels = malloc (series->count * sizeof(unsigned char)); //One Label for every Image
if (series->labels == NULL){
return 0;}
for (int i = 0; i < imageCount; i++) { //Reserving Memory for every Images Pixelbuffer and setting width and height
series->images[i].width = width;
series->images[i].height = height;
series->images[i].buffer = malloc(width * height * sizeof(unsigned char)); // allocates memory for every image in the series
if (series->images[i].buffer == NULL){
for (int j = 0; j < i; j++){
free(series->images[j].buffer);
}
free(series->images);
free(series->labels);
return 0;
}
}
return 1;
}

View File

@ -39,12 +39,16 @@ static void prepareImageFile(const char *path, unsigned short int width, unsigne
void test_readImagesReturnsCorrectNumberOfImages(void)
{
GrayScaleImageSeries *series = NULL;
const unsigned short expectedNumberOfImages = 2;
const char *path = "testFile.info2";
prepareImageFile(path, 8, 8, expectedNumberOfImages, 1);
series = readImages(path);
TEST_ASSERT_NOT_NULL(series);
TEST_ASSERT_EQUAL_UINT16(expectedNumberOfImages, series->count);
clearSeries(series);
remove(path);
}

View File

@ -5,36 +5,39 @@
// TODO Matrix-Funktionen implementieren
typedef struct Matrix {
unsigned int rows;
unsigned int cols;
MatrixType* buffer;
} Matrix;
Matrix createMatrix(unsigned int rows, unsigned int cols)
{
Matrix newMatrix;
if (rows == 0 || cols == 0) {
newMatrix.rows = 0;
newMatrix.cols = 0;
newMatrix.buffer = NULL;
return newMatrix;
}
newMatrix.rows = rows;
newMatrix.cols = cols;
newMatrix.buffer = calloc(rows*cols, sizeof(MatrixType));
return newMatrix;
}
void clearMatrix(Matrix *matrix)
{
free(matrix.buffer);
matrix.buffer = NULL;
free(matrix->buffer);
matrix->buffer = NULL;
matrix->rows = 0;
matrix->cols = 0;
}
void setMatrixAt(MatrixType value, Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
{
if (rowIdx >= matrix.rows || colIdx >= matrix.cols){
printf("Index out of bounds\n"); //Error Message because Index Input exceeds Matrix
}
}
else{
matrix.buffer[rowIdx * matrix.cols + colIdx] = value; //Writes Value of value variable in the selected place in Matrix
}
}
}
MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int colIdx)
@ -47,41 +50,75 @@ MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int co
MatrixType value = matrix.buffer[rowIdx * matrix.cols + colIdx]; //Stores value of selected place of Matrix in value variable
return value;
}
}
}
Matrix add(const Matrix matrix1, const Matrix matrix2)
{
Matrix MatrixErgebnis = createMatrix(matrix1.rows, matrix1.cols); //Creating Result Matrix
if(matrix1.cols != matrix2.cols || matrix1.rows != matrix2.rows){
printf("Matrix dimensions do not match\n"); //Error Message if dimensions of Input Matrixes are not identical
clearMatrix(MatrixErgebnis);
MatrixErgebnis = NULL;
return MatrixErgebnis;
}
else{
//If rows and cols of both Matrixes are the same the normal addition starts
if (matrix1.rows == matrix2.rows && matrix1.cols == matrix2.cols){
Matrix MatrixErgebnis = createMatrix(matrix1.rows, matrix1.cols);
for (unsigned int i = 0; i < matrix1.rows; i++){
for (unsigned int j = 0; j < matrix1.cols; j++){
//Adding Matrix Elements of same row and col index together and store in new Matrix
MatrixErgebnis.buffer[i * matrix1.cols + j] = matrix1.buffer[i * matrix1.cols + j] + matrix2.buffer[i * matrix1.cols + j];
}
}
}
return MatrixErgebnis;
}
//if matrix1 is a Vektor it adds elements to first col of matrix2
else if (matrix1.cols == 1 && matrix1.rows == matrix2.rows){
Matrix MatrixErgebnis = createMatrix(matrix2.rows, matrix2.cols);
for (unsigned int i = 0; i < matrix2.rows; i++) {
for (unsigned int j = 0; j < matrix2.cols; j++) {
//Copy Matrix2 to ErgebnisMatrix
MatrixErgebnis.buffer[i * matrix2.cols + j] = getMatrixAt(matrix2, i, j);
//Adding Elements of first col of Matrix 1 (Vector) to all Elements of MatrixErgebnis
MatrixErgebnis.buffer[i * matrix2.cols + j] += matrix1.buffer[i];
}
}
return MatrixErgebnis;
}
//if matrix2 is a Vektor it adds elements to first col of matrix1
else if (matrix2.cols == 1 && matrix1.rows == matrix2.rows){
Matrix MatrixErgebnis = createMatrix(matrix1.rows, matrix1.cols);
for (unsigned int i = 0; i < matrix1.rows; i++) {
for (unsigned int j = 0; j < matrix1.cols; j++) {
//Copy Matrix1 to ErgebnisMatrix
MatrixErgebnis.buffer[i * matrix1.cols + j] = getMatrixAt(matrix1, i, j);
//Adding Elements of first col of Matrix 2 (Vector) to first col of MatrixErgebnis
MatrixErgebnis.buffer[i * matrix1.cols + j] += matrix2.buffer[i];
}
}
return MatrixErgebnis;
}
else{
printf("Matrix dimensions do not match\n"); //Error Message if dimensions of Input Matrixes are not identical
Matrix MatrixErgebnis = createMatrix(0, 0);
clearMatrix(&MatrixErgebnis);
return MatrixErgebnis;
}
}
return MatrixErgebnis;
}
Matrix multiply(const Matrix matrix1, const Matrix matrix2)
{
Matrix result;
result.rows = 0;
result.cols = 0;
result.buffer = NULL;
if (matrix1.cols != matrix2.rows) {
return result;
}
result.rows = matrix1.rows;
result.cols = matrix2.cols;
if (matrix1.rows == matrix2.cols) {
result.buffer = malloc(result.rows * result.cols * sizeof(MatrixType));
for(int i = 0; i < result.rows; i++) {
@ -90,11 +127,8 @@ Matrix multiply(const Matrix matrix1, const Matrix matrix2)
for(int k = 0; k < matrix1.cols; k++) {
value += matrix1.buffer[i * matrix1.cols + k] * matrix2.buffer[k * matrix2.cols + j];
}
result.buffer[i * matrix1.cols + j] = value;
result.buffer[i * result.cols + j] = value;
}
}
return result;
}
printf("Die angegebenen Matrizen haben keine passenden Dimensionen für die Multiplikation");
return result;
}

View File

@ -7,7 +7,11 @@ typedef float MatrixType;
// TODO Matrixtyp definieren
typedef struct Matrix Matrix;
typedef struct Matrix{
unsigned int rows;
unsigned int cols;
MatrixType* buffer;
}Matrix;