forked from abhijitnathwani/image-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_blur_color.c
97 lines (80 loc) · 2.36 KB
/
image_blur_color.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
* @file image_blur_gray.c
* @brief C program to blur the grayscale image, using convolution
* @author Priya Shah
* @version v1
* @date 2018-01-10
*/
#include <stdio.h>
#include <time.h>
int main()
{
clock_t start, stop;
start = clock(); // Note the start time for profiling purposes.
FILE *fIn = fopen("images/lena_color.bmp","r"); // Input File name
FILE *fOut = fopen("lena_blur_color.bmp","w+"); // Output File name
int i,j,y, x;
unsigned char byte[54];
if(fIn==NULL) // check if the input file has not been opened succesfully.
{
printf("File does not exist.\n");
}
for(i=0;i<54;i++) // read the 54 byte header from fIn
{
byte[i] = getc(fIn);
}
fwrite(byte,sizeof(unsigned char),54,fOut); // write the header back
// extract image height, width and bitDepth from imageHeader
int height = *(int*)&byte[18];
int width = *(int*)&byte[22];
int bitDepth = *(int*)&byte[28];
printf("width: %d\n",width);
printf("height: %d\n",height );
int size = height*width; // calculate the image size
unsigned char buffer[size][3]; // store the input image data
unsigned char out[size][3]; // store the output image data
for(i=0;i<size;i++) // read image data character by character
{
buffer[i][2]=getc(fIn); // blue
buffer[i][1]=getc(fIn); // green
buffer[i][0]=getc(fIn); // red
}
float v=1.0 / 9.0; // initialize the blurrring kernel
float kernel[3][3]={{v,v,v},
{v,v,v},
{v,v,v}};
for(x=1;x<height-1;x++)
{
for(y=1;y<width-1;y++)
{
float sum0= 0.0;
float sum1= 0.0;
float sum2= 0.0;
for(i=-1;i<=1;++i)
{
for(j=-1;j<=1;++j)
{
// matrix multiplication with kernel with every color plane
sum0=sum0+(float)kernel[i+1][j+1]*buffer[(x+i)*width+(y+j)][0];
sum1=sum1+(float)kernel[i+1][j+1]*buffer[(x+i)*width+(y+j)][1];
sum2=sum2+(float)kernel[i+1][j+1]*buffer[(x+i)*width+(y+j)][2];
}
}
out[(x)*width+(y)][0]=sum0;
out[(x)*width+(y)][1]=sum1;
out[(x)*width+(y)][2]=sum2;
}
}
for(i=0;i<size;i++) //write image data back to the file
{
putc(out[i][2],fOut);
putc(out[i][1],fOut);
putc(out[i][0],fOut);
}
fclose(fOut);
fclose(fIn);
stop = clock();
printf("\nCLOCKS_PER_SEC = %ld\n",stop-start); //1000000
printf("%lf ms\n",((double)(stop-start) * 1000.0)/CLOCKS_PER_SEC );
return 0;
}