8位二值图像转化为1位二值图像

来源:互联网 发布:2017年php就业前景 编辑:程序博客网 时间:2024/06/06 02:57

8位二值图像转化为1位二值图像

  • 本文以bmp图像格式为例对如何将8位二值图像转换为1位二值图像进行说明

8位二值图像

对于普通的bmp格式二值图像,其每个像素存储为8位(即每个像素占一个字节存储空间)。

1位二值图像

而同样的bmp格式二值图像,也可以在存储时,每位只占用1个bit的空间,这样格式的二值图像占用的总存储空间约等于8位二值图像的1/8(由于文件头的大小基本不变,当图像较大时,占用存储基本是8倍)。

8位二值图像与1位二值图像的转换

由于8位bmp格式二值图像与1位bmp二值图像,不能通过简单的修改文件头格式实现转化,因此需要利用写文件的格式,将bmp文件当成无格式的字节序列,此时,我们可以按照相应的文件头格式及图像数据逐字节写入二值图像的内容,实现8位bmp格式二值图像与1位bmp格式二值图像的转换。

废话不多说,以下是我在VS中调试通过的代码,请各位看官批评指点。

C++代码如下(VS中调试通过)


#include "stdafx.h"#include <stdio.h> #include <stdlib.h>#include "cv.h"#include "highgui.h"#include "cvaux.h"typedef  struct  tagBITMAPFILEHEADER{     unsigned short int  bfType;       //位图文件的类型,必须为BM     unsigned long       bfSize;       //文件大小,以字节为单位    unsigned short int  bfReserverd1; //位图文件保留字,必须为0     unsigned short int  bfReserverd2; //位图文件保留字,必须为0     unsigned long       bfbfOffBits;  //位图文件头到数据的偏移量,以字节为单位}BITMAPFILEHEADER; typedef  struct  tagBITMAPINFOHEADER {     long biSize;                        //该结构大小,字节为单位    long  biWidth;                     //图形宽度以象素为单位    long  biHeight;                     //图形高度以象素为单位    short int  biPlanes;               //目标设备的级别,必须为1     short int  biBitcount;             //颜色深度,每个象素所需要的位数    short int  biCompression;        //位图的压缩类型    long  biSizeImage;              //位图的大小,以字节为单位    long  biXPelsPermeter;       //位图水平分辨率,每米像素数    long  biYPelsPermeter;       //位图垂直分辨率,每米像素数    long  biClrUsed;            //位图实际使用的颜色表中的颜色数    long  biClrImportant;       //位图显示过程中重要的颜色数}BITMAPINFOHEADER; typedef  struct {     BITMAPFILEHEADER  file; //文件信息区    BITMAPINFOHEADER  info; //图象信息区}bmp;void writebmpfile() {     bmp  m = {0};        //定义一个位图结构    FILE *fp;    IplImage * temp = cvLoadImage("BMP_binary.bmp",0);    fopen_s(&fp,"BMP_binary_bit.bmp","wb+");    if (NULL == fp)    {        printf("can't open the bmp imgae.\n");        exit(0);    }    int widthStep = 0;    widthStep = ((temp->width + 31) / 32) * 4;    //写入文件头    m.file.bfType = 0X4D42;    m.file.bfSize = widthStep*temp->height + 62;       //文件大小,数据大小+文件头大小    m.file.bfReserverd1 = 0;    m.file.bfReserverd2 = 0;    m.file.bfbfOffBits = 62;    //写入信息头    m.info.biSize = 40;    m.info.biWidth = temp->width;    m.info.biHeight = temp->height;    m.info.biPlanes = 1;    m.info.biBitcount = 1;    m.info.biCompression = 0;    m.info.biSizeImage = widthStep*temp->height;    m.info.biXPelsPermeter = 0;    m.info.biClrUsed = 0;    m.info.biClrImportant = 0;    fseek(fp,0,SEEK_SET);    fwrite(&(m.file.bfType),sizeof(m.file.bfType),1,fp);    fseek(fp,2,SEEK_SET);    fwrite(&(m.file.bfSize),sizeof(m)-2,1,fp);    //54-62共八个字节表示调色板信息    uchar Palette[8] = {0,0,0,0,255,255,255,0};//    fseek(fp,54,SEEK_SET);    fwrite(Palette,sizeof(uchar),8,fp);    uchar* data = new uchar[widthStep*temp->height];    memset(data,0,widthStep*temp->height);    //单色位图,1表示白色,0表示黑色,结果图背景为白(1),线条为黑(0)    for(int i = 0; i < temp->height; i++)    {        for(int j = 0; j < widthStep; j++)        {            uchar temp_data = 0;            for(int k = 0; k < 8; k++)            {                if(j*8 + k < temp->width)                {                    int temp_value = 0;                    if((uchar)temp->imageData[(temp->height-1-i)*temp->widthStep+j*8+k] == 255)                    {                        temp_value = 1 << (7-k);                        temp_data += temp_value;                    }                }            }            data[i*widthStep+j] = temp_data;        }    }    fseek(fp,62,SEEK_SET);    fwrite(data,sizeof(uchar),widthStep*temp->height,fp);    fclose(fp);}int main(){    writebmpfile();    return 0;}

相关链接

www.cnblogs.com/kingmoon/archive/2011/04/18/2020097.html

blog.csdn.net/o_sun_o/article/details/8351037

目录

  • 8位二值图像转化为1位二值图像
    • 8位二值图像
    • 1位二值图像
    • 8位二值图像与1位二值图像的转换
    • C代码如下VS中调试通过
    • 相关链接
      • 目录

0 0