91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1KB
    文件類型: .cpp
    金幣: 1
    下載: 0 次
    發布日期: 2021-06-07
  • 語言: C/C++
  • 標簽: C++??讀取圖像??程序??

資源簡介

剛學數字圖像處理,簡單的寫了個讀取圖像的C++程序,希望對大家有幫助~~

資源截圖

代碼片段和文件信息

#include?
#include?
#include?
#include?
#include?
#include?
unsigned?char?*pBmpBuf;
int?bmpWidthbmpHeight;
RGBQUAD?*pColorTable;
int?biBitCount;
bool?readBmp(char?*bmpName)
{
FILE?*fp=fopen(bmpName“rb“);//二進制方式打開指定的圖像文件
if(fp==0)?return?0;
fseek(fpsizeof(BITMAPFILEHEADER)0);//跳過位圖的文件頭結構
BITMAPINFOHEADER?head;
fread(&headsizeof(BITMAPINFOHEADER)1fp);//將文件頭信息存入head中
bmpWidth?=?head.biWidth;?//獲取圖像寬等信息
????bmpHeight?=?head.biHeight;//獲取圖像高
????biBitCount?=?head.biBit

評論

共有 條評論