数字图像处理的作业中要读取一个二进制文件。所有的灰度值为0-255. 使用下面的方法读取时出现了问题。
ifstream fin;
fin.open("data_batch_1.bin",ios::binary);
if(!fin){
cout<<"open error!"<<endl;
return -1;
}
char buffer[3073];
fin.read(buffer,3073*sizeof(char));
for(int i=0;i<17;i++){
cout<<(unsigned short)buffer[i]<<endl;
}
由于char是有符号的,因此在使用unsigned short进行转化的时候,也会出现问题。可以改为下面的代码。
ifstream fin;
fin.open("data_batch_1.bin",ios::binary);
if(!fin){
cout<<"open error!"<<endl;
return -1;
}
char buffer[3073];
fin.read(buffer,3073*sizeof(char));
for(int i=0;i<17;i++){
unsigned char tmp=(unsigned char)buffer[i];
cout<<(unsigned short)tmp<<endl;
}