Compare commits

..

No commits in common. "4e2dd7b4d48299246f2ed434c487d5197e03a4ff" and "1f1a7a23b158a8001df7fe32e33da583ac46b991" have entirely different histories.

View File

@ -7,18 +7,26 @@
#define FILE_HEADER_STRING "__info2_image_file_format__" #define FILE_HEADER_STRING "__info2_image_file_format__"
/// @brief Gets the next char value from specified and opened file in the moment that is only ONE short int. /// @brief Gets the next char value from specified and opened file
/// @param openedFile stream FILE, from which to read /// @param openedFile stream FILE, from which to read
static int getCharValueFromFile(FILE* openedFile) { /// @param iterations how many chars are being taken from (1 char equals 2 Hexdecimals equals 8bit)
static int getCharValueFromFile(FILE* openedFile, int iterations) {
int addToFile = 0; int addToFile = 0;
if (openedFile == NULL) return 0; if (openedFile == NULL) return 0;
addToFile = fgetc(openedFile); for (int i = 0; i < iterations; i++) {
addToFile += fgetc(openedFile) * 256; int tmp = fgetc(openedFile);
//If the File ends, the method returns a '0'
if (openedFile == EOF) return addToFile;
addToFile += tmp;
}
return addToFile; return addToFile;
} }
// TODO 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;
@ -30,93 +38,78 @@ GrayScaleImageSeries *readImages(const char *path)
// file Could not be opened/does not exist // file Could not be opened/does not exist
if (openFile != NULL) { if (openFile != NULL) {
char* actualFileTag = malloc(strlen(FILE_HEADER_STRING)+1 * sizeof(char)); char* actualFileTag = malloc(strlen(FILE_HEADER_STRING) * sizeof(char));
int numberOfImages = 0; int numberOfImages = 0;
int width = 0; int width = 0;
int height = 0; int height = 0;
for (int i = 0; i < strlen(FILE_HEADER_STRING); i++) { for (int i = 0; i < strlen(FILE_HEADER_STRING); i++) {
char tmpFileChar = fgetc(openFile); actualFileTag += fgetc(openFile);
if (tmpFileChar == EOF) {
fclose(openFile);
return NULL;
} }
actualFileTag[i] = tmpFileChar;
}
actualFileTag[strlen(FILE_HEADER_STRING)] = '\0';
// checks if the files are equal: strcmp should return '0' --> convert it to '1' for 'true' // checks if the files are equal: strcmp should return '0' --> convert it to '1' for 'true'
int fileTagEqual = strcmp(actualFileTag, FILE_HEADER_STRING); int fileTagEqual = !strcmp(actualFileTag, FILE_HEADER_STRING);
//we only need the fileTag to verify its an image for our series. //we only need the fileTag to verify its an image for our series.
free(actualFileTag); free(actualFileTag);
actualFileTag = NULL; actualFileTag = NULL;
if (fileTagEqual == 0) { if (fileTagEqual) {
numberOfImages = getCharValueFromFile(openFile); numberOfImages = getCharValueFromFile(openFile, 2);
// no Images in series -> No image-series // no Images in series -> No image-series
if (numberOfImages == 0) { if (numberOfImages == 0) {
fclose(openFile); fclose(openFile);
return NULL; return series;
} }
width = getCharValueFromFile(openFile); width = getCharValueFromFile(openFile, 2);
height = getCharValueFromFile(openFile); height = getCharValueFromFile(openFile, 2);
// no height/width --> impossible file // no height/width --> impossible file
if(height == 0 || width == 0) { if(height == 0 || width == 0) {
fclose(openFile); fclose(openFile);
return NULL; return series;
} }
//all the starting parameters are set --> the images can be read and stored //all the starting parameters are set --> the images can be read and stored
// GrayScaleImage* images = malloc(numberOfImages * sizeof(GrayScaleImage)); GrayScaleImage* images = malloc(numberOfImages * sizeof(GrayScaleImage));
// unsigned char* labels = malloc(numberOfImages * sizeof(unsigned char)); unsigned char* labels = malloc(numberOfImages * sizeof(unsigned char));
series = malloc(sizeof(GrayScaleImageSeries));
series->count = 0; series->count = 0;
series->images = malloc(numberOfImages * sizeof(GrayScaleImage)); series->images = images;
series->labels = malloc(numberOfImages * sizeof(unsigned char)); series->labels = labels;
printf(" %d , %d , %d \n", width, height, numberOfImages);
for (int i = 0; i < numberOfImages; i++) { for (int i = 0; i < numberOfImages; i++) {
series->images[i].height = height; for (int j = 0; j < width * height; j++) {
series->images[i].width = width;
series->images[i].buffer = malloc(width * height);
for (int j = 0; j < (width * height); j++) {
// allocating the actual matrix image for image // allocating the actual matrix image for image
series->images[i].buffer[j] = fgetc(openFile); images[i].buffer = malloc(width * height);
images[i].height = height;
images[i].width = width;
images[i].buffer[j] = fgetc(openFile);
} }
//rest of the values that only affect the image itself //rest of the values that only affect the image itself
series->labels[i] = fgetc(openFile); series->labels[i] = fgetc(openFile);
series->count++; series->count++;
} }
} }
fclose (openFile);
} }
fclose(openFile);
return series; return series;
} }
// TODO Vervollständigen Sie die Funktion clearSeries, welche eine Bildserie vollständig aus dem Speicher freigibt
void clearSeries(GrayScaleImageSeries *series) void clearSeries(GrayScaleImageSeries *series)
{ {
if (series == NULL) return;
for (int i = 0; i < series->count; i++) { for (int i = 0; i < series->count; i++) {
free(series->images[i].buffer); free(series->images[i].buffer);
series->images[i].buffer = NULL;
} }
free(series->images); free(series->images);
series->images = NULL; series->images = NULL;
free(series->labels); free(series->labels);
series->labels = NULL; series->labels = NULL;
free(series);
series = NULL;
} }