Reading 16 bit unsigned raw image in c++

1.3k Views Asked by At

I am trying to read a 16 bits unsigned image (192*256) saved in raw format using the following lines of code:

FILE * pFile;
pFile = fopen("D:\\S1.raw", "r");
unsigned short bufferImage[1][192*256]; 
fread(&bufferImage[0][0], 256*192*sizeof(unsigned short),1, pFile);

However the values stored in the bufferImage do not correspond to the pixels values in the image. I really appreciate your help with that.

0

There are 0 best solutions below