-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathimage_rgbtogray.c
69 lines (52 loc) · 1.63 KB
/
image_rgbtogray.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
/**
* @file image_rgbtogray.c
* @brief C program to convert an RGB image to grayscale.
* @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("lena_color.bmp","r"); //Input File name
FILE *fOut = fopen("lena_gray.bmp","w+"); //Output File name
int i,j,y;
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 image size
unsigned char buffer[size][3]; //to store the image data
for(i=0;i<size;i++) //RGB to gray
{
y=0;
buffer[i][2]=getc(fIn); //blue
buffer[i][1]=getc(fIn); //green
buffer[i][0]=getc(fIn); //red
y=(buffer[i][0]*0.3) + (buffer[i][1]*0.59) + (buffer[i][2]*0.11); //conversion formula of rgb to gray
putc(y,fOut);
putc(y,fOut);
putc(y,fOut);
}
fclose(fOut);
fclose(fIn);
stop = clock();
printf("\nCLOCKS_PER_SEC = %ld\n",stop-start);
printf("%lf ms\n",((double)(stop-start) * 1000.0)/CLOCKS_PER_SEC );
return 0;
}