bmp
bigwudan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
opencvIplImage转化BMP(源代码)
// newtest3.6.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "windows.h" int _tmain(int argc, _TCHAR* argv[]) { FILE *fp = NULL; fp=fopen("E:\\Lena.bmp","rb"); unsigned char* pTot原创 2013-03-04 18:04:20 · 520 阅读 · 0 评论 -
vc bmp对象与Opencv Iplimage对象相互转换
首先我们要了解两种数据结构 IplImag 对象结构: /************************************************************************************************** *转载 2013-02-26 23:09:41 · 395 阅读 · 0 评论 -
BMP与IplImage相互转换
class BMP { public: BMP():bmpData(NULL) { memset(&biHeader, 0, sizeof(biHeader)); } BMP(const BMP & img); BMP(const IplImage &img); BMP(int width, int height, int bitCount)转载 2013-02-27 20:22:41 · 420 阅读 · 1 评论
分享